Tip 1: Practice at least 250 Questions
Tip 2: Do at least 2 projects
Tip 1: Have some projects on your resume.
Tip 2: Do not put false information on your resume.






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.





Let S = “abdd” and X = “bd”.
The windows in S which contain all the characters in X are: 'abdd', 'abd', 'bdd', 'bd'.
Out of these, the smallest substring in S which contains all the characters present in X is 'bd'.
All the other substring have a length larger than 'bd'.

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