Skip to content

Files

Latest commit

 

History

History

101. symmetric-tree

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

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