I have to implements a function that takes a string as an input and finds the non-duplicate character from this string.
So an an example is if I pass string str = \"
var input1 = Console.ReadLine().ToLower().ToCharArray(); var input2 = input1; var WithoutDuplicate = input1.Union(input2);