Apple interview question

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

Interview Answer

Anonymous

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