J'ai postulé via un recruteur. Le processus a pris 2 semaines. J'ai passé un entretien chez Goldman Sachs en févr. 2018
Entretien
Recruiter reached out on LinkedIn saying they're expanding in SF and want to hire multiple engineers for a promising project that impacts the whole company. I realized it was a good opportunity and after a call with him, I was explained the interview process - timed hackathon test, followed by standard 1hr technical phone interview followed by an onsite at the SF office. I did not make it to the onsite but will share the question I faced for the phone interview.
Questions d'entretien [1]
Question 1
/* Problem Name is &&& Second Smallest &&& PLEASE DO NOT REMOVE THIS LINE. */
/**
* Instructions to candidate.
* 1) Run this code in the REPL to observe its behaviour. The
* execution entry point is main().
* 2) Consider adding some additional tests in doTestsPass().
* 3) Implement secondSmallest() correctly.
* 4) If time permits, some possible follow-ups.
*/
/**
* Returns the second smallest element in the array x.
* Returns 0 if the array has fewer than 2 elements.
*/
// [1, 0 ,2]
function secondSmallest(x)
{
// todo: implement this function
var smallest = Infinity,
smallestDiff = Infinity,
diffArray = [];
for(var i=0; i<x.length; i++){
if(x[i] <= smallest){
smallest = x[i];
}
}
for(var j=0; j<x.length; j++){
if(x[j] !== smallest){
diffArray.push(x[j] - smallest);
}
}
for(var k=0; k<diffArray.length; k++){
//smallest diff
if(diffArray[k] <= smallestDiff){
smallestDiff = diffArray[k];
}
}
return smallest + smallestDiff;
}
J'ai passé un entretien chez Goldman Sachs (Seattle, WA)
Entretien
Had Coderpad interview (45 mins), Superday Interview (45mins ,45 mins) virtually. they were DSA , DSA+ System Design. currently waiting for the update. 2 interviewers, were there in each rounds. DSA problems were Optimal approach and find average score
J'ai passé un entretien chez Goldman Sachs (Bengaluru)
Entretien
First round was hackerrank assessment having 2 coding questions. Then after clearing that, the first round of interview had Leetcode Hard question, similar to get the maximum score. I was not able to do it. Interviewer was very nice though
Questions d'entretien [1]
Question 1
Leetcode Hard question, similar to get the maximum score
J'ai passé un entretien chez Goldman Sachs (Tokyo)
Entretien
One OA and coding round
I failed at first round since I cannot solve that lc problem, interviewer is from the office out of Japan,
OA is easy, got help with AI you can easily passed it.
Questions d'entretien [1]
Question 1
one hard lc question.
4. Median of Two Sorted Arrays