mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-05-02 14:56:27 -04:00
Update and rename is_tree_symmetric.py to bt_is_tree_symmetric.py
This commit is contained in:
parent
5159d766d9
commit
7d6d6189e5
1 changed files with 3 additions and 2 deletions
|
@ -2,7 +2,8 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# author: bt3gl
|
||||
|
||||
def is_symmetrical(root: Optional[TreeNode]) -> bool:
|
||||
|
||||
def is_symmetric(root: Optional[Node]) -> bool:
|
||||
|
||||
stack = [(root, root)]
|
||||
|
||||
|
@ -25,7 +26,7 @@ def is_symmetrical(root: Optional[TreeNode]) -> bool:
|
|||
return True
|
||||
|
||||
|
||||
def is_symmetrical_recursive(root: Optional[TreeNode]) -> bool:
|
||||
def is_symmetric_recursive(root: Optional[TreeNode]) -> bool:
|
||||
|
||||
def helper(node1, node2):
|
||||
if (not node1 and node2) or \
|
Loading…
Add table
Add a link
Reference in a new issue