I applied online. The process took 1 week. I interviewed at LinkedIn
Interview
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
2
Other Software Engineer - New College Grad Interview Reviews for LinkedIn
I applied online. The process took 2 weeks. I interviewed at LinkedIn
Interview
phone interview
Interview questions [1]
Question 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)
I applied through a recruiter. I interviewed at LinkedIn in Sep 2013
Interview
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.
Interview questions [1]
Question 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.).