Shu-How Zの小窝

Loading...
摘要: 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 阅读(9) 评论(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)
摘要: var reverseBetween = function(head, left, right) { if(!head)return null; let ret=new ListNode(-1,head),pre=ret,cnt=right-left+1; while(--left){ pre=pr 阅读全文
posted @ 2026-04-08 19:43 KooTeam 阅读(4) 评论(0) 推荐(0)
摘要: 206. 反转链表 1:17:41 /** * Definition for singly-linked list. * function ListNode(val, next) { * this.val = (val undefined ? 0 : val) * this.next = (next 阅读全文
posted @ 2026-04-03 18:27 KooTeam 阅读(4) 评论(0) 推荐(0)
摘要: /** * @param {number} n * @return {boolean} */ var isHappy = function(n) { let pre=n,cur=getNext(n); while(cur!==pre && cur!==1){ pre=getNext(pre) cur 阅读全文
posted @ 2025-12-11 18:13 KooTeam 阅读(8) 评论(0) 推荐(0)