I applied through a recruiter. The process took 2 months. I interviewed at DSR (Tashkent) in June 2024
Interview
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
Interview questions [1]
Question 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