leetcood學習筆記-501- 二叉搜索樹中的衆數

題目描述: 方法一: class Solution: def findMode(self, root: TreeNode) -> List[int]: if not root: return [] dic = {} stack = [root] while stack: node
相關文章
相關標籤/搜索