求仁得仁
05
17
16
15
15
gin-hello world gin-hello world
package main import "github.com/gin-gonic/gin" func main() { r := gin.Default() r.GET("/", func(c *gin.Context) {
2023-05-15
15
14
12
WIN-开启BBR WIN-开启BBR
管理员模式打开 powershell netsh int tcp set supplemental Template=Internet CongestionProvider=bbr2 netsh int tcp set supplement
2023-05-12
12
12
11
11
LeetCode-14.最长公共前缀 LeetCode-14.最长公共前缀
题干 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 “”。 示例 1: 输入:strs = [“flower”,“flow”,“flight”] 输出:“fl” 示例 2: 输入:strs = [“
2023-05-11
11
11
11
LeetCode-11.盛最多水的容器 LeetCode-11.盛最多水的容器
题干 给定一个长度为 n 的整数数组 height 。有 n 条垂线,第 i 条线的两个端点是 (i, 0) 和 (i, height[i]) 。 找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。 返回容器可以储存的最大
2023-05-11
11
10
10
15 / 35