https://hack.codingblocks.com/app/contests/2022/381/problem
approach:
just check whether the roots of the trees have the same structure (e.g - if one trees left child is NULL then the other trees left child should also be NULL)
if they have return true and call on the left and right subtree else return false
base case: if root is NULL then return true
will this work?
