employer cover photo
employer logo

Pregunta de entrevista de Apigee

Print unique strings in a array.

Respuestas de entrevistas

Anónimo

21 may 2016

Used HashSet to keep track of string that were already seen.

Anónimo

25 oct 2017

1) Build a Trie and just then just walk and print it then... 2) Like above, use hash, however, this is challenging if you can have unbounded string... as definition of string.... char-sequence-until-null so potential input can one huge sequence.... if it is known that string can be resonably 256 char long at max and all english letter then you can make hash function.