Create a function that, given a string txt, finds a letter that has a single occurrence. Return the letter in uppercase. If the input is empty, return an empty string "".
single_occurrence("EFFEAABbc") ➞ "C"
single_occurrence("AAAAVNNNNSS") ➞ "V"
single_occurrence("S") ➞ "S"
The function will not be case sensitive.