helper
-
[Typescript] Exhaustive conditionals – UnreachableError helper class
class UnreachableError extends Error { constructor(_nvr: never, message: string) { super(m…
-
Leedcode 101. 对称二叉树
给你一个二叉树的根节点 root , 检查它是否轴对称。 示例 1:输入:root = [1,2,2,3,4,4,3]输出:true 示例 2:输入:root = [1,2,2,n…