Create a function that, given a string str, finds a letter that has a single occurrence. Return the letter in uppercase.
singleOccurrence("EFFEAABbc") ➞ "C"
singleOccurrence("AAAAVNNNNSS") ➞ "V"
singleOccurrence("S") ➞ "S"The function will not be case sensitive.