Question d’entretien chez Cisco

Write a function that, given an array, returns an array with the same content of the parameter but without duplicates.

Réponse à la question d'entretien

Utilisateur anonyme

28 nov. 2018

If they'll let you use Python: return list(set(parameter)