Total years of experience: 10 months
Date: 29th April 2020
First Round
Second Round
{
x: {
value: 3,
children: {
q: {
value: 8,
children: {}
},
m: {
value: 9,
children: {
l: {
value: 4,
children: {}
}
}
}
}
}find sum of values weighted till some level, for example -
level 3 - 4 (has l)
level 2 - 8 + 9 + 4 = 21 ( q + m + l)
level 1 - 3 + 8 + 9 + 4 = 24 ( z + q + m + l)
Solved using recursion & appropriate data structures like map.
3. Resume related questions, discussions on past internships.
Third Round
Design autocomplete feature with proper oops design prenciples & production ready code. Discussed various edge cases as well.
https://leetcode.com/problems/design-search-autocomplete-system/
Overall had a great experience, interviewers were friendly and helpful. Accepted the full time offer as SDE-1.