I saw the following question on GFG to find if there's a duplicate subtree of size 2 or more in a binary tree. Now, it is written in the practice question requirements and also articles everywhere say that TC and Space complexity are both O(N) here, but I think it's O(N^2) s...