4 lines
No EOL
60 B
Python
4 lines
No EOL
60 B
Python
m = L[0]
|
|
for j in range(len(L)):
|
|
if m < L[j]:
|
|
m = L[j] |