Tip 1 : Code More till you like it
Tip 2 : Study Data Structures
Tip 1 : Mention only what you are confident about
Tip 2 : Mention tools & technologies used in the project as well



A subsequence is a sequence that can be derived from another sequence by deleting zero or more elements without changing the order of the remaining elements.
DP approach helped me to solve this problem



Input: 'a' = [7, 12, 1, 20]
Output: NGE = [12, 20, 20, -1]
Explanation: For the given array,
- The next greater element for 7 is 12.
- The next greater element for 12 is 20.
- The next greater element for 1 is 20.
- There is no greater element for 20 on the right side. So we consider NGE as -1.
Solved using Stack
1. Introduce yourself
2. Most challenging task in your B.Tech
3. How to tackle pressure?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL clause is used to specify the conditions in a query?