DSA Day 84/100
Topic: Tree
1) Children Sum ParentEasy
RECURSIVE SOLUTION
Input:
1
/ \
4 3
/ \
5 N
Output: 0
Explanation: Here, 1 is the root node
and 4, 3 are its child nodes. 4 + 3 =
7 which is not equal to the value of
root node. H...
preetikaprakash.hashnode.dev1 min read