Apple Interview Question

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

Interview Answer

Anonymous

Nov 8, 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