Pergunta de entrevista da empresa Cisco

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

Resposta da entrevista

Sigiloso

28 de nov. de 2018

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