Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AidanBaird authored Jun 4, 2022
1 parent aeccaa3 commit 4c6006c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Find_the_smallest_integer_kyu8.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Find the lowest number in the array

def find_smallest_int(arr):
ordered = sorted(arr)
print(ordered)
return ordered[0]

0 comments on commit 4c6006c

Please sign in to comment.