Question d’entretien chez Mahisoft

Given a string ABBBCDEF return the compressed string e.g. A3BCDEF

Réponse à la question d'entretien

Utilisateur anonyme

12 oct. 2020

I used a dictionary on C# to store every letter ocurrences and then with string builder return the result.