Skip to content

Instantly share code, notes, and snippets.

@EliTheCoder
Created April 16, 2019 01:00
Show Gist options
  • Save EliTheCoder/d266383f3bc2c84419ed70551652a013 to your computer and use it in GitHub Desktop.
Save EliTheCoder/d266383f3bc2c84419ed70551652a013 to your computer and use it in GitHub Desktop.
def recurring(input):
save = []
for i in input:
if i in save:
return i
else:
save.append(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment