Five鱼
Five鱼
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Five鱼的博客
全部文章
(共3篇)
题解 | #有重复项数字的全排列#
/** * * @param num int整型一维数组 * @return int整型二维数组 */ function permuteUnique( num ) { // write code he...
2022-08-25
0
409
题解 | #序列化二叉树#前序遍历
function TreeNode(x) { this.val = x; this.left = null; this.right = null; } function Serialize(pRoot) { &nbs...
Javascript Node
2022-07-10
0
357
题解 | #每K个一组反转链表#
// JS 实现 function ListNode(x){ this.next = null; this.val = x; } let list = new ListNode(); let head = list; let data...
Javascript V8
2022-06-20
0
370