Tip 1 : Practice as many questions as you can and try to have a daily target met while preparing
Tip 2 : Try to make some projects in any development technology of your liking. Mainly Web, App
Tip 3 : Try to gather ample knowledge in ML, python, Cloud and such related topics of interests
Tip 1 : Have some projects on your resume about which you have thorough knowledge off
Tip 2 : Do not lie about anything on your resume
Tip 3 : Try not to put irrelevant information in your resume



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
There were 2 questions in this round both of them were coding questions



More than one sub-array can have a maximum sum, in that case, output any.
I had already seen and solved this problem so it was easy for me to solve this problem
I used kadane's algorithm for solving this as it is a very good approach to solve this problem



I used the recursion abcktracking approach to solve this question.



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
I used 3 pointers cur, prev, and fwd for solving this question.
while (cur!= null){
I changed the next of cur to prev and changed prev to cur and cur to fwd.
}

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?