[leetcode - Bliend-75 ] 19. Remove Nth Node From End of List

Given the head of a linked list, remove the nth node from the end of the list and return its head. 给一个 linked list 并移除 倒数第 n 个 node。 Example Input: 1 - 2 - 3 - 4 - 5, n = 2; Outpu
JS [笔记] 设定档基础

Id 与名称无关不可以做关联,Id为唯一值不同模型Id可以重複简写一律用全大写(ID,EN,TW)强烈建议先做i18n 分类格式 { Id: 001, language_EN:clothes, language_TW:衣服
Docker [笔记] Window10 + 建立Golang(Gin+GORM套件) + MySQL

1. Docker安装 + 使用Docker安装Golang + 网路 Docker是为了让我之后写后端+DB方便使用,但是 Docker装完之后一直强迫被关闭,WSL出事 Window10 家用版 WSL难装到哭,原
[leetcode - Bliend-75 ] 226. Invert Binary Tree (Easy)

Given the root of a binary tree, invert the tree, and return its root. 给一个 tree 的 root 将该 tree 中所有 node 的左右 node 交换。 Example Input: root = [4,2,7,1,3,6,9] Output: [4,7,2,9
[一天至少一题直到 ICPC 开赛 #017] 解题:Bar Code(12/26、12/27)

Bar Code (2023 12 CPE 最后一题) 因为要交作业的关係:解题+拍片+剪 大概花了两天(所以就放在一起了) 题目连结 第一次讲解,有点生疏还请见笑 解题影片 DC 群组
select count(distinct 订单编号),sum(金额)

发现好用的东西 之前都傻傻的,先distinct出来,再count. select count(*) from (select distinct 订单编号 from #订单)a 发现可以这样写,真是太方便了. select count(distinct 订单
[leetcode - Bliend-75 ] 105. Construct Binary Tree from Preo

Given two integer arrays preorde r and inorder where preorder is the preorder traversal of a binary tree and inorder is the inorder traversal of the same tree, construct and return the binary tree. 利用