Last active
July 2, 2020 23:37
-
-
Save adambene/1acafcfa490e236b3160d610102ebc54 to your computer and use it in GitHub Desktop.
This file contains 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
import sys | |
def distinct_preserve_order_py37(items): | |
assert sys.version_info >= (3, 7), 'Please use Python 3.7 or above for this code.' | |
return list(dict().fromkeys(items).keys()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment