Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created September 3, 2019 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/3932823c148518e825f8424aff69da93 to your computer and use it in GitHub Desktop.
Save codecademydev/3932823c148518e825f8424aff69da93 to your computer and use it in GitHub Desktop.
Codecademy export
#Write your function here
def reversed_list(lst1, lst2):
lst1.sort()
lst2.sort()
if lst1 == lst2:
return True
else:
return False
#Uncomment the lines below when your function is done
print(reversed_list([1, 2, 3], [3, 2, 1]))
print(reversed_list([1, 5, 3], [3, 2, 1]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment