257. Binary Tree Paths
Input:
1
/ \
2 3
\
5
Output:
["1->2->5", "1->3"]
Explanation:
All root-to-leaf paths are: 1->2->5, 1->3Last updated
Was this helpful?
Input:
1
/ \
2 3
\
5
Output:
["1->2->5", "1->3"]
Explanation:
All root-to-leaf paths are: 1->2->5, 1->3Last updated
Was this helpful?
Was this helpful?
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution(object):
def binaryTreePaths(self, root):
"""
:type root: TreeNode
:rtype: List[str]
"""
def dfs(root):
if not root: return []
left = dfs(root.left)
right = dfs(root.right)
merge = []
merge.extend(left)
merge.extend(right)
ans = []
if not merge:
ans.append(str(root.val))
else:
for s in merge:
ans.append("{}->{}".format(root.val,s))
return ans
return dfs(root)