Created
May 15, 2015 13:00
-
-
Save OscarGalindo/a8fca5bf3e9bf4f12ca6 to your computer and use it in GitHub Desktop.
Array.diff @ Codewars
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
| 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