Will this code work to find the rightmost leaf recursively. Thank you
Node* findRightMostLeaf(Node* curNode){ if ( curNode== null) return null; if (c