6 lines
No EOL
103 B
Python
6 lines
No EOL
103 B
Python
def maximum(L):
|
|
m = L[0]
|
|
for i in range(1,len(L)):
|
|
..............
|
|
..............
|
|
return m |