
力扣
文章平均质量分 52
selenium1
这个作者很懒,什么都没留下…
展开
-
LeetCode: 18. 四数之和
LeetCode: 18. 四数之和原创 2022-04-05 11:35:41 · 201 阅读 · 0 评论 -
LeetCode : 15. 三数之和
LeetCode : 15. 三数之和原创 2022-04-04 11:12:15 · 186 阅读 · 0 评论 -
LeetCode: 454. 四数相加 II
给你四个整数数组nums1、nums2、nums3和nums4,数组长度都是n,请你计算有多少个元组(i, j, k, l)能满足:原创 2022-03-31 09:59:47 · 215 阅读 · 0 评论 -
LeetCode:1. 两数之和
LeetCode:1. 两数之和原创 2022-03-30 16:18:05 · 265 阅读 · 0 评论 -
LeetCode : 349. 两个数组的交集
LeetCode : 349. 两个数组的交集原创 2022-03-29 21:33:22 · 276 阅读 · 0 评论 -
LeetCode : 242. 有效的字母异位词
LeetCode : 242. 有效的字母异位词原创 2022-03-26 14:33:41 · 87 阅读 · 0 评论 -
LeetCode: 142. 环形链表 II
LeetCode: 142. 环形链表 II原创 2022-03-25 11:55:09 · 261 阅读 · 0 评论 -
LeetCode: 19. 删除链表的倒数第 N 个结点
LeetCode: 19. 删除链表的倒数第 N 个结点原创 2022-03-24 15:36:09 · 107 阅读 · 0 评论 -
LeetCode: 206. 反转链表
LeetCode: 206. 反转链表原创 2022-03-23 11:18:31 · 174 阅读 · 0 评论 -
LeetCode: 203. 移除链表元素
LeetCode: 203. 移除链表元素原创 2022-03-20 11:55:47 · 1195 阅读 · 0 评论 -
LeetCode: 59. 螺旋矩阵 II
LeetCode: 59. 螺旋矩阵 II原创 2022-03-19 21:19:23 · 169 阅读 · 0 评论 -
LeetCode:209. 长度最小的子数组
LeetCode:209. 长度最小的子数组原创 2022-03-17 16:40:27 · 173 阅读 · 0 评论 -
leetcode:27. 移除元素
leetcode:27. 移除元素原创 2022-03-10 12:08:28 · 88 阅读 · 0 评论 -
leetcode:704. 二分查找
704. 二分查找给定一个n个元素有序的(升序)整型数组nums和一个目标值target,写一个函数搜索nums中的target,如果目标值存在返回下标,否则返回-1。示例 1:输入: nums = [-1,0,3,5,9,12], target = 9输出: 4解释: 9 出现在 nums 中并且下标为 4示例2:输入: nums = [-1,0,3,5,9,12], target = 2输出: -1...原创 2022-03-10 12:09:48 · 137 阅读 · 0 评论