mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
df04d94543
* Renaming directories * Adding a recursive factorial algorithm
15 lines
203 B
Python
15 lines
203 B
Python
# NguyenU
|
|
|
|
def find_max(nums):
|
|
max = nums[0]
|
|
for x in nums:
|
|
if x > max:
|
|
max = x
|
|
print(max)
|
|
|
|
def main():
|
|
find_max([2, 4, 9, 7, 19, 94, 5])
|
|
|
|
if __name__ == '__main__':
|
|
main()
|