Created
February 2, 2019 07:29
-
-
Save airatkh/a8489c5b3ae3a0054f83fc3c3c314e50 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
#псевдокод | |
def reverse(list): | |
for index in len(list): | |
list_rever[len(list)-index] = list[index] | |
return list_rever |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment