Untitled

 avatar
unknown
plain_text
2 months ago
219 B
7
Indexable
Description:
Given a string s, return the first non-repeating character. If all characters are repeating, return "None". 
first_unique_char("aabbcc")    # Output: "None" 
first_unique_char("swiss")     # Output: "w" 
Editor is loading...
Leave a Comment