Question d’entretien chez Panasonic

Given this list in Python, return a list that removes all duplicates.

Réponse à la question d'entretien

Utilisateur anonyme

7 nov. 2024

I converted the list into a set, which is known to hold unique values, and converted it back to a list and returned it.