Untitled
unknown
plain_text
10 months ago
219 B
10
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