Candidatei-me por meio de recrutador(a). O processo levou 1 dia. Fui entrevistado pela Two Sigma em jul. de 2011
Entrevista
general phone interview followed by code test.
Perguntas de entrevista [2]
Pergunta 1
Write a program that takes a list of strings containing integers and words and returns a sorted version of the list. The goal is to sort this list in such a way that all words are in alphabetical order and all integers are in numerical order. Furthermore, if the nth element in the list is an integer it must remain an integer, and if it is a word it must remain a word.
Write a program to synchronize data sets between data centers using as few copies as possible.
Example 1:
----------
Input:
4
1 3 4
1 2 3
1 3
1 4 2
One Possible Correct Output:
2 2 1
4 1 2
2 2 3
4 4 3
3 1 4
done