We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fedb3e7 commit 67d409bCopy full SHA for 67d409b
Maths/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