Tip 1 : Practice at least 300 questions.
Tip 2 : Prepare the core subjects thoroughly for your interviews
Tip 3 : Keep applying for jobs on LinkedIn.
Tip 1 : Make a single-page resume
Tip 2 : Include 2-3 projects related to the job profile.
Tip 3 : Include relevant experiences if you have any.






1. The sizes will range from 1 to ‘N’ and will be integers.
2. The sum of the pieces cut should be equal to ‘N’.
3. Consider 1-based indexing.



If the given grid is this:
[7, 19, 3]
[4, 21, 0]
Then the modified grid will be:
[7, 19, 0]
[0, 0, 0]



str = "ababc"
The longest palindromic substring of "ababc" is "aba", since "aba" is a palindrome and it is the longest substring of length 3 which is a palindrome.
There is another palindromic substring of length 3 is "bab". Since starting index of "aba" is less than "bab", so "aba" is the answer.
Given two boxes, B1 and B2, one containing 50 red marbles and the other containing 50 blue marbles, a ball is selected randomly from either box. Your task is to maximize the probability of selecting a red ball by reshuffling marbles in both boxes.



Tell me about yourself?
Why do you want to work at this company?
What values you can add to the company if we hire you?

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