摘要:
class Solution: def treeHeight(self,root): if root==None: return 0 if root.left==None and root.right==None: return 1 lh=self.treeHeight(root.left) ... 阅读全文
摘要:
一次可以跳一个,也可以跳n个 阅读全文
摘要:
dp[n]=dp[n-1]+dp[n-2] 阅读全文