Time to give back to the community. I am posting a bit late but it's never too late.
R1 - Technical Screening
- Valid parentheses
- debug recursion function
f(n){
if (n==0){
reutrn
}
f(n-1)
f(n-1)
print(n)
}
- "1110010101" given a binary string, check if it is divisible by 3.
Given cannot convert to decimal number
Loop rounds
R2 - Craft Demo
Got an assignment of Key generation service. Have to come up with a LLD, HLD and production ready code with a PPT to showcase each step.
Questions asked while showcasing the assignment
- why we had came up with NoSql and issue with nosql
- partitioning
- how availability is handled in nosql
R3 - Assesors round
- prodcuer consumer problem in multi threaded environment
- Data structure - max the element picked from array given the element which will be picked adjacent elements will get 0
R4 - Team Fitment
- Design a system which will automate the manual work between tasks of two seprate entities which are chained together
suppose Org1 manages task1 and task1 status will be sent to Org2 system. Right now manual operational work is there, optimize this and provide a automated solution
- decorator design pattern problem
R5 - Hiring Manager
- Leadership questions
- cultural fitment
A day after received call from recruiter that i have cleared the interviews.
Finally, i have accepted the Offer
Offer Details: https://leetcode.com/discuss/post/7132645/intuit-se2-accepted-by-anonymous_user-mztu/