Ho presentato la mia candidatura tramite un selezionatore. La procedura ha richiesto 2 mesi. Ho sostenuto un colloquio presso DSR (Taskent) nel mese di giu 2024
Colloquio
3 interviews;
1 - HR interview (About yourself, previous jobs and projects)
2 - Algorthmic mainly Data Structure and live coding
3 - Might be Theorical interview I did not get offer
Domande di colloquio [1]
Domanda 1
Algorith Interview:
1) calculate sum of nested array
2) two string might be the same or not, but elements rearranged, make code to find are they the same or not
3) class Stack {}
const stack = new Stack{}
stack.customPush(1);
stack.customPush(2);
stack.customPush(3);
stack.customPop(); returns => 3
stack.customPop(); returns => 2