0
what is the actual working of while loop for the given below code ?
n = int(raw_input()) arr = map(int, raw_input().split()) m=max(arr) while max(arr)==m: arr.remove(max(arr)) print (max(arr))
1 Antwort
0
What value you are passing into input here?