Untitled

Anonymous
plain_text
02/27/2025 1:28 PM
292 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