Tip 1: Engage in live coding contests on platforms like Codechef, Codeforces, and others as frequently as possible.
Tip 2: Practice previous interview questions from reputable platforms such as LeetCode and GeeksForGeeks.
Tip 3: Thoroughly revise Computer Science subjects like Database Management Systems (DBMS) and Object-Oriented Programming (OOPS).
Include only those skills and experiences in your resume that you are confident about and continue practicing to enhance your proficiency.



Down: (row+1,col)
Right: (row, col+1)
Down right diagonal: (row+1, col+1)
I had practiced enough of DP questions, so this one looked fairly easy. Since it was a standard DP question, the same approach worked here too.



I used Kadane algorithm here to find subarray with maximum sum. It is a standard question for interview.



Given 'NUM' : 1.75
Irreducible fraction can be represented as 7/4.
Note that 14/8 = 1.75 as well, but 14/8 is not an irreducible fraction.
In order to preserve precision, the real number will be given to you in the form of two strings : the integer part, and the fractional part.
The integer part will contain not more than 8 digits, whereas the fractional part will always contain 8 digits.
I was unable to solve all test cases. I thought of using decimal precision and other things but not able to pas cases all test.



I solved this question using a priority queue(max heap) by inserting all elements in the priority queue and then taking the maximum two out of them and pushing their sum again to the priority queue.
Design a scalable online food delivery system like Uber Eats.
Step 1: Understand the Requirements and Constraints
Step 2: Identify Components and High-Level Architecture
Step 3: Design Individual Components in Detail
Step 4: Consider Scalability, Performance, and Trade-Offs

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?