mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-07 03:07:46 +08:00
Merge branch 'master' of https://github.com/TheAlgorithms/Python
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user