Skip to content

Instantly share code, notes, and snippets.

@prestigegodson
Created March 17, 2021 11:48
Show Gist options
  • Save prestigegodson/195aa5eaaaaea45ed3fedf74097ed304 to your computer and use it in GitHub Desktop.
Save prestigegodson/195aa5eaaaaea45ed3fedf74097ed304 to your computer and use it in GitHub Desktop.
def first_repeating_character(characters):
if not characters:
return None
characterSet = set()
for c in characters:
if c in characterSet:
return c
else:
characterSet.add(c)
return None
print(first_repeating_character('ABCCABZC'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment