Created
June 27, 2018 13:25
-
-
Save hta218/102ebfd0c45153a68843ea1c22d63875 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
numbers = [2018, 1, 5, 0, -10, 20, 15, -7] | |
sorted_numbers = [] | |
sorting = True | |
while sorting: | |
min_numb = min(numbers) | |
sorted_numbers.append(min_numb) | |
numbers.remove(min_numb) | |
if len(numbers) == 0: | |
sorting = False | |
print(*sorted_numbers) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment