Question: please help me numbers. If there is no clement before a certain position that is amaller, input a 1. For example: if axe is [5,2,8,3,9,12]
numbers. If there is no clement before a certain position that is amaller, input a 1. For example: if axe is [5,2,8,3,9,12] then the nearest amaller values ilst is [1,1,2,2, 3 , 9]. The logic is as follows: For 5 , there is no smaller previous value so the list so far is [-1]. For 2, there is also no smaller previous value, so the lisleks now [1, -1]. For 8 , the nearest smaller value is 2 so the list is now [1,1,2]. For 3 , the nearest smaller value is also 2, so the list is now l1, 1,2,21. This goes on to produce the anawer above. Your program should take this final Ilst and return the elements as a string separated by a space: 1 - 12239 Examples
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
