Tip 1 : Refer geeks for geeks coding problems
Tip 2 : Practice Coding questions from HackerRank or Leetcode.
Tip 3 : DO atleast 1 project
Tip 1 : Have some projects on resume.
Tip 2 : Mention your skill set like C, Java
- Morning time
- Environment was good.
- No other significant activity
- Interviewer was good



Here subset sum means sum of all elements of a subset of 'nums'. A subset of 'nums' is an array formed by removing some (possibly zero or all) elements of 'nums'.
Input: 'nums' = [1,2]
Output: 0 1 2 3
Explanation:
Following are the subset sums:
0 (by considering empty subset)
1
2
1+2 = 3
So, subset sum are [0,1,2,3].



Two cards are said to be of different types if they have different numbers written on them.



A race track has five lanes. You are to find the 3 fastest horses out of a total of 25. How many races would have to be conducted to find the three fastest horses?
Tip 1: Practice only
Answer -
step 1- Conduct 5 horse races with 5 horses in each group. Then, conduct another race with the winners of the said 5 races. The winner is the first fastest horse.
step 2-Then conduct another race with the rest of the 4 horses, and record the 1st and 2nd horses in it. They are the second and third fastest horses.
step 3-This way, you would have found the three fastest horses out of 25.



‘POINTS = [ [3, 1], [-1, 3], [2, 0] ]’, ‘N = 3’

The path with minimum time is: ‘[3,1] -> [2,2] -> [1,3] - > [0,3] -> [-1,3] -> [0,2] -> [1,1] -> [2,0]’.
Time taken from [3,1] to [-1,3] = 4 seconds.
Time taken from [-1,3] to [2,0] = 3 seconds.
Total time = 7 seconds. Thus, you should return ‘7’ as the answer.
- Morning time
- Environment was good.
- No
- Interviewer was not soo good
- Tell me about yourself
- What did you like most about the job description?
- What experience do you have that would be relevant to this role?
- Why are you leaving your current job?
Tip 1 : Give proper answer
Tip 2 : Give valid answers
Tip 3 : Take time and communicate well with HR Pannel

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?