题目: 题解:
class Solution:def maxDepth(self, root: Node) -> int:if root is None:return 0ans 0queue [root]while queue:queue [child for node in queue for child in node.children]ans 1return ans
1、安装n
npm install -g n2、查看n 模块的版本
n --version3、展示当前安装的所有版本
n list 4、安装指定版本
n 14.17.4 5、安装最新版本
n latest6、安装稳定版本 n stable7、删除版本
n rm 14.17.4 8、查看帮助
n help9、切换当前node版本
输入n,会弹出…