Candidatei-me por meio de recrutador(a). O processo levou 2 meses. Fui entrevistado pela Rocket Fuel em mai. de 2015
Entrevista
Got an email from the recruiter and then did not hear anything from them until a month later. Than I had 1 phone interview and another "phone interview". The second did not call me but chatted with me on collabedit. It was a really really strange approach. I wrote the code very easily. Then he said you do not need to put parentheses in Python. I said this is just for clarification and making it more readable. He said if you have any questions write it here for me. In the end He said "you did a great job and I will set up another interview for you". The next day I received a rejection email.
Perguntas de entrevista [1]
Pergunta 1
'''Question 1:
Given a sorted but rotated array, and a target, find the location of the target in the array.
If the target is not in the array, returns -1
1)
INPUT:
[3,6,7,1,2], target = 1
OUTPUT:
3
2)
INPUT:
[3,6,7,1,2], target = 9
OUTPUT:
-1
'''