Question d’entretien chez SAP

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

Réponse à la question d'entretien

Utilisateur anonyme

13 juil. 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.