11 lines
123 B
Python
Raw Normal View History

2018-10-22 14:36:08 -04:00
# NguyenU
import math
def find_max(nums):
max = 0
for x in nums:
if x > max:
max = x
print max