
Given a string s, return the first character that appears exactly once in left-to-right order. If no such character exists, return "".
s = "leetcode"Output"l"WhyThe first character with frequency 1 is `l`.s = "aabb"Output""WhyNo character appears exactly once.`0 <= len(s) <= 10^5``s` contains printable charactersReturn the first unique character in original order