Skip to content

Instantly share code, notes, and snippets.

@OscarGalindo
Created May 15, 2015 13:00
Show Gist options
  • Select an option

  • Save OscarGalindo/a8fca5bf3e9bf4f12ca6 to your computer and use it in GitHub Desktop.

Select an option

Save OscarGalindo/a8fca5bf3e9bf4f12ca6 to your computer and use it in GitHub Desktop.
Array.diff @ Codewars
array_diff = lambda y,x: [i for i in y if i not in x]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment