Question d’entretien chez Apple

Given a string with a word, return a string with all duplicates deleted.

Réponse à la question d'entretien

Utilisateur anonyme

8 nov. 2016

Split the word into individual characters in R and used the unique function. They wanted me to instead code in Python and call the set function.

7