Shu-How Zの小窝

Loading...
摘要: 83. 删除排序链表中的重复元素 1:37:19 /** * @param {ListNode} head * @return {ListNode} */ var deleteDuplicates = function(head) { if(!head) return null; let pre=h 阅读全文
posted @ 2026-05-11 19:11 KooTeam 阅读(3) 评论(0) 推荐(0)
摘要: Electron入门到精通(有可能是全站最好的electron课程) https://www.bilibili.com/video/BV1xd4y1J7dB 2 4 P1. 01.内容概述 P2. 02.Electron技术架构 技术架构 •Chromium:支持最新特性的浏览器 Node.js:j 阅读全文
posted @ 2026-05-08 19:39 KooTeam 阅读(5) 评论(0) 推荐(0)
摘要: function ListNode(val, next) { this.val = (val undefined ? 0 : val) this.next = (next undefined ? null : next) } /** * Definition for singly-linked li 阅读全文
posted @ 2026-05-07 16:55 KooTeam 阅读(2) 评论(0) 推荐(0)
摘要: Electron免费视频教程-从基础到实战 Electron基础:https://www.bilibili.com/video/BV177411s7Lt 1 2 01_课程介绍和Electron简介_ electron e lai 存 02_Electron开发环境搭建 npm install el 阅读全文
posted @ 2026-05-01 20:21 KooTeam 阅读(5) 评论(0) 推荐(0)
摘要: Electron超详细实战开发教程 Electron入门:https://www.bilibili.com/video/BV1QB4y1F722 1 2 00-最新Electron课程介绍 Electron e lai 纯 / iao 凑 01-electron介绍与第一个应用 https://ww 阅读全文
posted @ 2026-04-29 19:20 KooTeam 阅读(10) 评论(0) 推荐(0)
摘要: 24. 两两交换链表中的节点 0:58:19 function ListNode(val, next) { this.val = (val undefined ? 0 : val) this.next = (next undefined ? null : next) } /** * @param { 阅读全文
posted @ 2026-04-27 17:56 KooTeam 阅读(5) 评论(0) 推荐(0)
摘要: 设计模式简介 最佳的实践得来的设计经验 设计模式 开发过程中面临的一般问题的解决方案 相当长的一段时间的试验和错误总结出来 设计模式是一套被反复使用的、多数人知晓的、经过分类编目的、代码设计经验的总结 设计模式原则 S – Single Responsibility Principle 单一职责原则 阅读全文
posted @ 2026-04-27 17:07 KooTeam 阅读(6) 评论(0) 推荐(0)
摘要: Git全套学习教程Github码云Git零基础自学教程精通Git使用-广州新东方职业教育 git https://www.bilibili.com/video/BV1iS421d7bh 6 12 0.1_学习内容_学习目标 Git高效实践 1.1_第1章概述_主要内容 第1章Git概述Git是一款版 阅读全文
posted @ 2026-04-23 19:33 KooTeam 阅读(10) 评论(0) 推荐(0)
摘要: 61 旋转链表 /** * Definition for singly-linked list. * function ListNode(val, next) { * this.val = (val undefined ? 0 : val) * this.next = (next undefined 阅读全文
posted @ 2026-04-20 21:30 KooTeam 阅读(4) 评论(0) 推荐(0)
摘要: LeetCode-25 K个一组反转链表 1:52:03 /** * Definition for singly-linked list. * function ListNode(val, next) { * this.val = (val undefined ? 0 : val) * this.n 阅读全文
posted @ 2026-04-15 17:20 KooTeam 阅读(5) 评论(0) 推荐(0)