Tip 1 : Be consistent solving 5 problem daily is far better than solving 35 problem at a time in week.
Tip 2 : Preparation takes time, don't loose hope if you are rejected in any round. Just be consistent.
Tip 3 : Try to solve variety of problems as much you can
Tip 4 : Don't copy project, do it yourself even if you are copying prepare at least 30 min of speech on same describing why you do this, what challenges you face.
If the interviewer is also of same domain of project then be ready for rapid fire.
Tip 1 : Try to make resume ATS friendly.
Tip 2 : Just don't fake anything.
Mostly focus on dsa and computer fundamentals.
Based on Computer Fundamentals.
Number Of MCQs - 20



The start time of one job can be equal to the end time of another.
As the profit is different here so greedy one will not work here.
We will sort according to finish time.
Then we will take next job which has start time equal or greater than previous one.



1 2 3
4 5 6
For the above 2*3 matrix , possible paths are (1 2 3 6) , (1 2 5 6) , (1 4 5 6).
You can return the paths in any order.
N2 will not work have to do BFS.



If you are given ARR = [2, 5, 1, 2, 7, 3, 0] and K = 2, the output is 17.
We can choose non-overlapping subarrays [2, 5] and [7, 3] to get a total sum of 17 (i.e. 2 + 5 + 7 + 3) which is the maximum possible sum.
In these type of problem always try to use presum array



If the given string is “aaBBccc” then the frequency of characters: { a:2, B:2, c:3 }. Now, as ‘a’ and ‘B’ both have the same frequency 2, we need to delete one character either one ‘a’ or one ‘B’, to make their frequency different. After deleting any character we will get frequency as 1,2 and 3, as they all are different. Thus we got our solution as 1.
It was implementation of map. Just have to figure out the the algo for this.



A binary search tree, also called an ordered or sorted binary tree, is a rooted binary tree whose internal nodes each store a key greater than all the keys in the node's left subtree and less than those in its right subtree.
A balanced binary search tree is a tree in which each node has either 0 or 2 children.
For Example, the root node is given as follows :
‘ROOT’ = 5 2 6 -1 -1 -1 -1 and ‘target’ = 8, The answer will be true since the sum of both leaf nodes is equal to 8.
As this is balanced bst the first thought was came is to have sorted array and then find the sum. But this will give tle. So went through the inorder traversal kind of thing.




Can you solve the problem in O(N) time?
Convert this to range covered by this. This will help in solving.
HM round
Basics of OS, deadlock thread etc etc
DBMS design for storing college management.
:
Write a SQL query for joining two tables.
What do you know about different types of JOINs?
Why did you choose Meesho?
What are your hobbies?
Tell me your Qualities.

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