Candidatei-me online. O processo levou 2 semanas. Fiz uma entrevista na empresa LinkedIn.
Entrevista
phone interview
Perguntas de entrevista [1]
Pergunta 1
Question1
/**
* Given a nested list of integers, returns the sum of all integers in the list weighted by their depth
* For example, given the list {{1,1},2,{1,1}} the function should return 10 (four 1's at depth 2, one 2 at depth 1)
* Given the list {1,{4,{6}}} the function should return 27 (one 1 at depth 1, one 4 at depth 2, and one 6 at depth 3)
Candidatei-me por meio de recrutador(a). Fui entrevistado pela LinkedIn em set. de 2013
Entrevista
I was contacted by a recruiter through LinkedIn. I first had a 30 minute phone conversation with the recruiter about my interests, LinkedIn, and the role they thought would be a good fit for me. He said the usual process is two technical phone interviews followed by an onsite.
Perguntas de entrevista [1]
Pergunta 1
For the first technical phone screen, the questions involved permutations (Scramble an array with an equal chance for every value. Return a list of all permutations of an array.).
Candidatei-me online. O processo levou 1 semana. Fiz uma entrevista na empresa LinkedIn.
Entrevista
Had 1st round as technical phone interview. Interviewer shared a document and asked to write the code. The questions was not the difficult. He asked me to implement List interface of java. I had to implement all add, get and remove methods using any data structure