First Unique Character in a String (C# and Python3) August 3, 2022 by Ayoub Bensakhria Given a string s, find the first non-repeating character in it and return its index. If it does not exist, return -1. Solution C# Python3