Tip 1 : Read resume well
Tip 2 : Be confident
Tip 3 : Don't try to fake
Tip 1 : Add technical project
Tip 2 : Present resume Well
Tip 3 : Don't write anything fake
2 questions based on Dynamic programming and sliding window to be solved in 90 mins and a test was conducted on hackerrank






'ARR' = [3, 4, -1, 1, 5] and 'K' = 3
Output = [4, 4, 5]
Since the maximum element of the first subarray of length three ([3, 4, -1]) is 4, the maximum element of the second subarray of length three ([4, -1, 1]) is also 4 and the maximum element of the last subarray of length three ([-1, 1, 5]) is 5, so you need to return [4, 4, 5].



If the given input string is "Welcome to Coding Ninjas", then you should return "Ninjas Coding to Welcome" as the reversed string has only a single space between two words and there is no leading or trailing space.
What keeps you motivated?
What are your goals?

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?