Tip 1 : Learn Oops(classes and functions)
Tip 2 : Practice Programming
Tip 3 : Read System Design
Tip 1 : Include projects you have done and learnt something
Tip 2 : Include metrics to quantify any result
Interview Vector Round on video call



Can you solve each query in O(logN) ?
Search an element in a sorted array rotated at a pivot.
Use binary search here.



Each pair should be sorted i.e the first value should be less than or equals to the second value.
Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
Do inorder traversal of the tree and push values to a hash set and iterate on this set to check if sum can be obtained
Design cricket score board system
Tip 1 : write modular code using classes and functions
Tip 2 : Use constants where necessary
Tip 3 : Ask clarifying questions
Design Instagram
Tip 1 : Read blogs on how to design a social networking app
Tip 2 : Read blogs on Sql vs nosql databases
Tip 3 : Ask clarifying questions

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