
Given a string s, return the index of the first character that appears exactly once. If no such character exists, return -1.
s = "leetcode"Output0Why`'l'` appears once and is the first unique character.s = "loveleetcode"Output2Why`'v'` is the first character with frequency 1.s = "aabb"Output-1WhyNo character appears exactly once.`1 <= len(s) <= 10^5``s` consists of English lowercase lettersReturn `-1` if no non-repeating character exists