+ 4
Write a program to find second maximum number of a given Array?
Free to choose any programming language. Note that: 1.Array size may vary. 2.Don't use sorting.
6 ответов
+ 17
ThisOne is for my Return on SL !!😊
&&
Thanks to @LukArToDo !!👍😉
https://code.sololearn.com/cF3MD07CuZVg/?ref=app
+ 12
https://code.sololearn.com/cTEG8HvokY4t/?ref=app
- 2
print(sorted(array)[-2])
## py