Skip to content

Instantly share code, notes, and snippets.

@ichux
Created February 18, 2025 09:22
def non_repeating(data):
count = {}
# First pass: Count occurrences
for char in data:
count[char] = count.get(char, 0) + 1
# Second pass: Find the first non-repeating character
for char in data:
if count[char] == 1:
return char
return None
if __name__ == "__main__":
print(non_repeating("abcda"))
print(non_repeating("aabcd"))
print(non_repeating("hello"))
# abcda -> b
# aabcd -> b
# hello -> h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment