employer cover photo
employer logo

Question d’entretien chez Apigee

Print unique strings in a array.

Réponses aux questions d'entretien

Utilisateur anonyme

21 mai 2016

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

Utilisateur anonyme

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.