Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 309 Bytes

File metadata and controls

11 lines (7 loc) · 309 Bytes

101. symmetric-tree

原题链接

笑死,极限压行:

return !pLeft && !pRight ? true : (!pLeft || !pRight ? false : pLeft->val == pRight->val && check(pLeft->left, pRight->right) && check(pLeft->right, pRight->left));

2021 - 03 - 29