Skip to content

Commit

Permalink
Merge pull request #427 from NguyenU/NguyenU
Browse files Browse the repository at this point in the history
Finding the max number
  • Loading branch information
i-vishi authored Oct 22, 2018
2 parents 8a76956 + 390bbb6 commit ddcea65
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Mathematics/findmax.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# NguyenU

import math

def find_max(nums):
max = 0
for x in nums:
if x > max:
max = x
print max

0 comments on commit ddcea65

Please sign in to comment.