Untitled

Anonymous
plain_text
02/28/2025 3:28 PM
296 B
13
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