Tip 1 : Practice medium level problems from the leetcode of all topics
Tip 2 : Give regular contests on Leetcode and Coding Ninjas
Tip 3 : Make at least 2 CRUD based projects
Tip 1 : Make one-page resume with a proper explanation of the project
Tip 2 : Mention your coding platform ranks in the achievement section properly.



The profit of the Mukesh Business over ‘N’ days is shown by array/list ‘profit’. It may contain negative values as there will be a loss on those days.



You may make as many transactions as you want but can not have more than one transaction at a time i.e, if you have the stock, you need to sell it first, and then only you can buy it again.





In this given ‘BINARY_TREE’, we can make two possible partitions:
1. The first one is with sums 2 and 4.
2. The second one is with sums 3 and 3.
The second partition divides the given tree into an equal sum partition tree, so we return “True”.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?