function isSymmetrical(pRoot){ return testCorrect( pRoot , pRoot ); } function testCorrect(root1 , root2) { // write code here if( root1 == null && root2 == null ){ return true; } if( root1 == null || root2 == null ){ return false; } if( root1.val...