In python, write a code that allows the user to input two non-negative number sequences in increasing order (the numbers entered are always getting bigger, and no number repeats), both terminated by a -1. The size of each sequence can vary (maybe sequence - 1 has four numbers, and sequence - 2 has seven). The output of this code should be a third sequence that is a combination of both sequences 1 and 2 and is sorted in non-decreasing order.  Note: Non-decreasing order means there can be a repeated number in the third sequence (see example 1). A strictly increasing order sequence cannot have repeat numbers at all (see example 3). Remember, all input sequences must be in strictly increasing order! please do this using python, only using while loops. NO language of "break" or "len" please. Hint: we can use three separate lists to solve this code.

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter2: Introduction To Systems Architecture
Section: Chapter Questions
Problem 2VE: A(n) __________ is a storage location implemented in the CPU.
icon
Related questions
Question

In python, write a code that allows the user to input two non-negative number sequences in increasing order (the numbers entered are always getting bigger, and no number repeats), both terminated by a -1. The size of each sequence can vary (maybe sequence - 1 has four numbers, and sequence - 2 has seven).

The output of this code should be a third sequence that is a combination of both sequences 1 and 2 and is sorted in non-decreasing order. 

Note: Non-decreasing order means there can be a repeated number in the third sequence (see example 1). A strictly increasing order sequence cannot have repeat numbers at all (see example 3).

Remember, all input sequences must be in strictly increasing order!

please do this using python, only using while loops. NO language of "break" or "len" please.

Hint: we can use three separate lists to solve this code. 

EXAMPLE RUN #1:
Input :
sequence-1 input: 2
7.3 20.3 99 102.7 -1
sequence-2 input: 10 20.3 77
-1
Output:
2 7.3 10 20.3 20.3 77 99 102.7
Transcribed Image Text:EXAMPLE RUN #1: Input : sequence-1 input: 2 7.3 20.3 99 102.7 -1 sequence-2 input: 10 20.3 77 -1 Output: 2 7.3 10 20.3 20.3 77 99 102.7
EXAMPLE RUN #3
Input :
sequence-1 input: 2 -1
sequence-2 input: 1 -1
Output:
1 2
Transcribed Image Text:EXAMPLE RUN #3 Input : sequence-1 input: 2 -1 sequence-2 input: 1 -1 Output: 1 2
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning