We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02e0d90 commit 8096286Copy full SHA for 8096286
1 file changed
find_the_smallest_integer_in_the_array.py
@@ -0,0 +1,7 @@
1
+# https://www.codewars.com/kata/55a2d7ebe362935a210000b2
2
+def findSmallestInt(arr):
3
+ return min(arr)
4
+
5
+# def find_smallest_int(arr):
6
+# arr.sort()
7
+# return arr[0]
0 commit comments