Skip to content

Instantly share code, notes, and snippets.

@moigagoo
Last active June 1, 2022 13:57
Show Gist options
  • Save moigagoo/da2226e1b94544e40e6e1f28b66fb077 to your computer and use it in GitHub Desktop.
Save moigagoo/da2226e1b94544e40e6e1f28b66fb077 to your computer and use it in GitHub Desktop.
def unique(l1, l2):
return [_ for _ in l1 if _ not in l2]
def remove_zeros(l):
return [_ for _ in l if _ != 0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment