This commit is contained in:
Harshil 2018-11-01 18:31:11 +01:00
commit b4e443aac1

View File

@ -1,8 +1,7 @@
# NguyenU
import math
def find_max(nums):
max = 0
max = nums[0]
for x in nums:
if x > max:
max = x