mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
26 lines
413 B
Python
26 lines
413 B
Python
# NguyenU
|
|
|
|
|
|
def find_max(nums):
|
|
"""
|
|
>>> for nums in ([3, 2, 1], [-3, -2, -1], [3, -3, 0], [3.0, 3.1, 2.9]):
|
|
... find_max(nums) == max(nums)
|
|
True
|
|
True
|
|
True
|
|
True
|
|
"""
|
|
max_num = nums[0]
|
|
for x in nums:
|
|
if x > max_num:
|
|
max_num = x
|
|
return max_num
|
|
|
|
|
|
def main():
|
|
print(find_max([2, 4, 9, 7, 19, 94, 5])) # 94
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|