We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a667e8 commit 265ea0eCopy full SHA for 265ea0e
Maths/FindMin.py
@@ -4,7 +4,7 @@ def findMin(x):
4
for i in x:
5
if minNum > i:
6
minNum = i
7
- return minNum
+ return minNum
8
9
print(findMin([0,1,2,3,4,5,-3,24,-56])) # = -56
10
0 commit comments