- 博客(2)
- 收藏
- 关注
原创 mysql笔记(上)
mosh讲数据库笔记,原视频链接(https://www.bilibili.com/video/BV1UE41147KC?p=1) 1. 单表查询基本操作 2. 多表的连接 3. 数据库的插入、删除 4. 数据汇总 5. 编写复杂查询 6. sql内置函数 7. 视图
2020-06-18 10:31:11 169
原创 LeetCode刷题记录贴(一)
1.两数之和 #哈希表 class Solution(object): def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ other = dict() for i in range(len(nums)): if other
2020-05-23 17:54:45 160
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人