Given a string s, return the first character that appears exactly once in the string (i.e., the leftmost non-repeating character).
""
).
"leetcode"
→ Output:
"l"
"aabb"
→ Output:
""
1 ≤ len(s) ≤ 1e5
s
contains standard ASCII letters/digits/punctuation (you may assume ASCII for counting).