We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a76956 + 390bbb6 commit ddcea65Copy full SHA for ddcea65
Mathematics/findmax.py
@@ -0,0 +1,10 @@
1
+# NguyenU
2
+
3
+import math
4
5
+def find_max(nums):
6
+ max = 0
7
+ for x in nums:
8
+ if x > max:
9
+ max = x
10
+ print max
0 commit comments