Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created September 14, 2020 14:31
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/20359db57aa90d92d650417ec8153432 to your computer and use it in GitHub Desktop.
Save codecademydev/20359db57aa90d92d650417ec8153432 to your computer and use it in GitHub Desktop.
Codecademy export
def is_first_superior(lst1, lst2):
for num1 in lst1:
for num2 in lst2:
if num1 > num2:
return True
return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment