/images/头像.jpeg

数据库-SqlZoo

本文为作者跟随SqlZoo学习sql的笔记,仅看mysql支持的内容 select selcet用于提取数据,空格加标识符命名列名 1 select xxx x,yyy y; 数值字段允许计

IDE-Jetbrains

保存时自动格式化代码 设置=>工具=>保存时的操作,将重新格式化代码勾上 全文搜索 win:alt+shift+f mac:comman

数据结构与算法-刷题-Leetcode

随机刷 8. 字符串转换整数 (atoi) 8. 字符串转换整数 (atoi) 简单模拟,打败双百 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 func myAtoi(s string) int { s=strings.TrimSpace(s) if s==""{return 0} nagative:=false if s[0]=='-'||s[0]=='+'{ if s[0]=='-'{nagative=true} s=s[1:] } ans:=0 for _,v:=range s{ if

go标准库-Time

go语言中文网 godoc go语言中文网有很多文档缺少内容比如string.Builder就没有,godoc绝对详尽,推荐阅读godoc time包提供
 |