摘要:
vscode配置golang开发环境 第一种方式 安装Vscode 和 Golang 略 在go module 模式下加载工具包 ``` mkdit test cd test go mod init test ``` 配置代理 ``` // set GOPROXY=https://proxy.gol 阅读全文
摘要:
package main import "fmt" func Parrten(list []int,l,r int)int{ base := r for l < r{ for(l<=r && list[l]<list[base]){l++} for(l<r && list[r]>list[base] 阅读全文