怪奇物语

怪奇物语

首页 新随笔 联系 管理

2022年12月30日 #

摘要: /** * @param {number} n * @return {string[][]} */ let solveNQueens = function (n) { let res = [] // 已摆放皇后的的列下标 let columns = [] // 已摆放皇后的对角线1下标 左下 -> 阅读全文
posted @ 2022-12-30 19:35 超级无敌美少男战士 阅读(42) 评论(0) 推荐(0)

摘要: const arr = [1, 2] console.log(!arr[0]) // false console.log(!arr[1]) // false console.log(!arr[2]) // true 阅读全文
posted @ 2022-12-30 19:29 超级无敌美少男战士 阅读(124) 评论(0) 推荐(0)

摘要: // contact和push的区别 // contact会返回一个新的数组 const arr = [1, 2, 3] const arr2 = arr.concat(4) console.log(arr) console.log(arr2) console.log(arr2 arr) // fa 阅读全文
posted @ 2022-12-30 19:27 超级无敌美少男战士 阅读(54) 评论(0) 推荐(0)

摘要: GroupAdd auo_gruop, ahk_exe msedge.exe GroupAdd auo_gruop, ahk_exe chrome.exe GroupAdd auo_gruop, ahk_exe snipaste.exe GroupAdd auo_gruop, ahk_exe msp 阅读全文
posted @ 2022-12-30 07:02 超级无敌美少男战士 阅读(176) 评论(0) 推荐(0)