Tip 1 : Ready for coding round with basics and DSA also these days.
Tip 2 : Ready any core subject like computer networks, operating system etc
Tip 3 : Go with atleast 2 projects.
Tip 4 : Ready for the projects you have done in your previous organisations and experience
Tip 1 : Please have projects on your resume if you are fresher.
Tip 2 : Whatever topics you are confident in, please mention only those topics.
You have got someone working for you for five days and a gold bar to pay him. You must give them a piece of gold at the end of every day. What are the fewest number of cuts to the bar of gold that will allow you to pay him 1/5th each day?



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?



Input: 'arr' = [1, 2, 7, -4, 3, 2, -10, 9, 1]
Output: 11
Explanation: The subarray yielding the maximum sum is [1, 2, 7, -4, 3, 2].

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?