Pergunta de entrevista da empresa SAP

Receive a string, return the first letter which appears once.

Resposta da entrevista

Sigiloso

13 de jul. de 2022

Iterate through string, add chars to Hashmap that counts the amount of times a char appeared. Iterate through the String again and see which char appeared once using the Hashmap.