Untitled

 avatar
unknown
plain_text
17 days ago
221 B
4
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