Tip 1 : Practice previous interview experience
Tip 2 : Mock interviews
Tip 3 : Focus on behavioral aspects as well
Tip 1 : Well structured and concise
Tip 2 : Technologies and previous experience should be properly documented



Input: 'a' = [2, 4, 6] and 'b' = [1, 3, 5]
Output: 3.5
Explanation: The array after merging 'a' and 'b' will be { 1, 2, 3, 4, 5, 6 }. Here two medians are 3 and 4. So the median will be the average of 3 and 4, which is 3.5.
Step 1 : Clarify the ques and constraints
Step 2 : Explained brute force solution with O (n+m) complexity.
Step 3 : Optimised and explain to the interviewer
Step 4 : Implement it and run test cases


If the given matrix is:
[ [1, 2, 5],
[3, 4, 9],
[6, 7, 10]]
We have to find the position of 4. We will return {1,1} since A[1][1] = 4.
Step 1 : Clarify the ques and constraints
Step 2 : Explained brute force solution.
Step 3 : Optimised and explain to the interviewer
Step 4 : Implement it and run test cases



Step 1 : Clarify the ques and constraints
Step 2 : Explained brute force solution with O (n+m) complexity.
Step 3 : Optimised and explain to the interviewer
Step 4 : Implement it and run test cases
What is ACID properties
Design Paytm
Design pizza delivery system

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?