Tip 1 : Atleast 250 DSA Question
Tip 2 : Prepare atleast 2 project on any technology and you should know each and every thing regarding your project.
Tip 3 : Must have Good english communication skill
Tip 1 : Must be in One page
Tip 2 : At least 2 project on Resume with their link.
11:00 am to 12:30pm



Let’s say the array ‘A’ = [1, 2, 3, 4, 5] and ‘K’ = 2, then after increasing each element by ‘K’. The array ‘A’ will become [3, 4, 5, 6, 7]. So the maximum - minimum will be 7 - 3 = 4.



If ‘ARR’ is {1,2,3,4} and ‘K’ = 4, then there exists 2 subsets with sum = 4. These are {1,3} and {4}. Hence, return true.
recursion-
we will consider two cases.
Consider the last element and now the required sum = target sum – value of ‘last’ element and number of elements = total elements – 1
Leave the ‘last’ element and now the required sum = target sum and number of elements = total elements – 1



A Subsequence of a string is the one which is generated by deleting 0 or more letters from the string and keeping the rest of the letters in the same order.
Step 1 : Iterate over the entire String
Step 2 : Iterate from the end of string
in order to generate different substring
add the substring to the list
Step 3 : Drop kth character from the substring obtained
from above to generate different subsequence.
Step 4 : if the subsequence is not in the list then recur.
3 DSA Question + Project Explanation



Dist(n1, n2) = Dist(root, n1) + Dist(root, n2) - 2*Dist(root, lca)
'n1' and 'n2' are the two given keys
'root' is root of given Binary Tree.
'lca' is lowest common ancestor of n1 and n2
Dist(n1, n2) is the distance between n1 and n2.



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
Intuition: The basic intuition of the problem is as follows:
An element of the array can store water if there are higher bars on the left and the right.
The amount of water to be stored in every position can be found by finding the heights of bars on the left and right sides.
The total amount of water stored is the summation of the water stored in each index.



Here are some examples of balanced BRACKETS "(())", "()()", "(())()".
We can solve this problem by using greedy strategies. If the first X characters form a balanced string, we can neglect these characters and continue on. If we encounter a ‘]’ before the required ‘[‘, then we must start swapping elements to balance the string.
4 easy Question.
Tell me about yourself.
Tell me about your project.
What are your hobbies?
What are your favourite places to visit?
Tip 1 : Know about your project
Tip 2 : Good communication skill

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?