Leetcode 257. Binary Tree Paths

題目描述:返回二叉樹從根到葉子節點的路徑。(是無左子樹且無右子樹) 題目鏈接:Leetcode 257. Binary Tree Paths 遞歸添加。 代碼如下 class Solution: def binaryTreePaths(self, root): """ :type root: TreeNode :rtype: List[str] """ an
相關文章
相關標籤/搜索