Tip 1 : Stay focused
Tip 2 : Practice coding questions
Tip 3 : View previous interviews of the company applying to
Tip 1 : Have atleast 3 great project
Tip 2 : Write only what you know and prepare well
In this round, I was asked about my role, tools, and tech stacks used in my current company. I was also asked 1 coding question and 1 system design question



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.

Use 2 nested for loops. The outer loop will be for each node of the 1st list and inner loop will be for 2nd list. In the inner loop, check if any of nodes of the 2nd list is same as the current node of the first linked list. The time complexity of this method will be O(M * N) where m and n are the numbers of nodes in two lists
LLD on building system like Flipkart
Tip 1 : practice system design
Tip 2 : ask for input from interviewer
3 coding questions were asked


1. If the list is empty, the function immediately returns None because there is no middle node to find.
2. If the list has only one node, then the only node in the list is trivially the middle node, and the function returns that node.
Traverse the whole linked list and count the no. of nodes. Now traverse the list again till count/2 and return the node at count/2.



N = A^3 + B^3.
1. A should be greater than or equal to one (A>=1).
2. B should be greater than or equal to zero (B>=0).
3. (A, B) and (B, A) should be considered different solutions, if A is not equal to B, i.e (A, B) and (B, A) will not be distinct if A=B.



If an interval ends at time T and another interval starts at the same time, they are not considered overlapping intervals.
This was mostly system design round and some os questions were asked
Design an app like uber
Tip 1 : practice system design question
Tip 2 : ask for inputs
What is threading. What are different scheduling algorithm

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?