TIL a faster way to remove duplicates from a #python iterable, preserving order (in https://youtu.be/5xArPgQMJls?t=2149 by
@SebaWitowski
)
def unique_items(iterable):
# Requires hashable items, Python 3.6+
return dict.fromkeys(iterable)
>>Click here to continue<<
