Tip 1 : Be good in DSA (this is generic tip for all companies)
Tip 2 : Do at least 2 projects
Tip 3 : Prepare Coer Subjects, Aptitude etc
Tip 1: Have at least 2 projects in resume
Tip 2: Make 1 page resume and use simple fonts
Tip 3 : Do not put false things on resume
There are 3 DSA problems. One is Easy, Second is Medium and Third is Hard. I was able to solve 2.5 problems.



'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].



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.



There is only one space between the values of each column in a row.
For example, Pattern for ‘N’ = 5 will be.
1 2 3 4 5
11 12 13 14 15
21 22 23 24 25
16 17 18 19 20
6 7 8 9 10
I simply solved this using 2 nested for loops



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.
I solved this using recursion

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Why is "hello world" (2 tokens) more than "helloworld" (1 token)?