Interview Guides

Given a string s, return the first character that appears exactly once in the string. If no such character exists, return an empty string "". The algorithm should preserve the original order of characters when deciding which unique character is first.
0 <= len(s) <= 10^5s contains printable ASCII characters