ECTC : 24L fixed was discissed before the interview
Based on this offer : https://leetcode.com/discuss/compensation/6419222/uniacco-sde-2-mumbai-offer/2853338
Round 1 :
intrdouction and then 2 easy problem solving question
1 -- Given an array of size N containing only 0s, 1s, and 2s; sort the array in ascending order. ideally nplace
Input:
N = 5, arr = [0, 2, 1, 2, 0]
Output: 0 0 1 2 2
2 -- : Given an array A of positive integers. Your task is to find the leaders in the array. An element of array is a leader if it is greater than or equal to all the elements to its right side. The rightmost element is always a leader.
Input: n = 6, arr = {16,17,4,3,5,2}
Output: [17, 5, 2]
Python & database:
Python script -- how does it work, GIL and all, Async function and multithreading, multiprocessing, Generators, Garbage collection, class method and static method, Indexing, composite indexing
dict , Set and their internal Data structure and their time complexity of lookup and all.
Middlewares
Proxy server
Connection pooling
SQL to find the nth salary of an employee.
Round 2 (system design) :
introducted yourself and then started with Design a Instagram :
1 - create a post from mobile device
2 - genrate a feed for user
3 - follow and following something like that
here interviewer given this and now you have to explain everything thing very precisely, don't be a generic, like these 2-3 options are there just to go what you are gonna do for this directely and then don't go even a single bit off the track as interview was not at all that friendly (he/she said directly that is not what i asked) and interviewer was not open for any discussion, you just keep explaning.
so prepare better and be very concise with your answer.
Verdict : Rejected
This is my 1st interview-experience post, do upvote!