Question: python language Q3. Consider a sorted list of numbers. Write a function to return a random sub-sequence of length N that maintains the ascending order.
python language
Q3. Consider a sorted list of numbers. Write a function to return a random sub-sequence of length N that maintains the ascending order. Sample Run: Let N= 3 Input: [5,8,9,10,40,70,98] Possible results: Run 1: [5,10,40] Run 2: (10,40,98] Run 3: (40,70,98]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
