Skip to content

Instantly share code, notes, and snippets.

@zahash
Last active January 3, 2019 12:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zahash/ba1fadea1e4cc4a643e9d07cd8fd9ec0 to your computer and use it in GitHub Desktop.
Save zahash/ba1fadea1e4cc4a643e9d07cd8fd9ec0 to your computer and use it in GitHub Desktop.
#@time_it
def set_method(st):
s = set()
repeat = set()
for letter in st:
if letter in s:
repeat.add(letter)
else:
s.add(letter)
return s-repeat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment