Easy
Given a string s, return the index of the first non-repeating character. If none exists, return -1.
s
-1
Input: s = "leetcode" Output: 0
Input: s = "loveleetcode" Output: 2
Input: s = "aabb" Output: -1