宇宙机吴彦祖
宇宙机吴彦祖
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
宇宙机吴彦祖的博客
全部文章
(共3篇)
题解 | #无重复数组#
const _getUniqueNums = (start, end, n) => { // set 去重 const con = new Set() // 生成 n 个不重复的随机数 while (con.size < n) { // Math.random 生...
2022-04-13
53
1744
题解 | #二叉树的最小深度#
function TreeNode(x) { this.val = x; this.left = null; this.right = null; } // 递归解法,相当于树的后序遍历,回溯到根节点时,比较左右子树的深度取最小+1就是整棵树的最小深度 function run(roo...
2021-08-26
3
620
题解 | #出现一次的数字#
function singleNumber (arr) { let result = 0 for (let i = 0; i < arr.length; ++i) { // 异或满足 "交换律":a ^ b ^ a === a ^ a ^ b =...
2021-08-26
6
669