
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 = "aabb"Output-1WhyNo character appears exactly once.`1 <= len(s) <= 10^5``s` contains lowercase English lettersReturn `-1` if there is no answer