首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
leetcode
我是王大你是谁
创建于2021-05-12
订阅专栏
python 解答 leetcode
等 30 人订阅
共750篇文章
创建于2021-05-12
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
leetcode 2351. First Letter to Appear Twice(python)
这是Weekly Contest 303 的第一题,难度 Eazy ,主要考查的是对题目的理解和计数器的使用
leetcode 2350. Shortest Impossible Sequence of Rolls(python)
这是 Biweekly Contest 83的第四题,难度 Hard ,主要考查的是对题目的深入理解
leetcode 2349. Design a Number Container System(python)
这是 Biweekly Contest 83的第三题,难度 Medium ,主要考查的是使用双字典数据结构解决实际应用问题
leetcode 2347. Best Poker Hand(python)
这是 Biweekly Contest 83的第一题,难度 Eazy ,主要考查的是对题目的理解和计数器的使用
leetcode 2348. Number of Zero-Filled Subarrays(python)
这是 Biweekly Contest 83的第二题,难度 Medium ,主要考查的是统计全 0 子数组的个数
leetcode 240. Search a 2D Matrix II(python)
leetcode 240. Search a 2D Matrix II(python)核心是使用二分搜索法解题
leetcode 34. Find First and Last Position of Element in Sorted Array(python)
leetcode 34. Find First and Last Position of Element in Sorted Array 二分法解决
leetcode 1473. Paint House III (python)
leetcode 1473. Paint House III (python)可以使用记忆化 DFS 解题,也可以使用动态规划解题
leetcode 2344. Minimum Deletions to Make Array Divisible(python)
这是 Weekly Contest 302的第四题,难度 Hard ,主要考查的是对最大公约数和排序
leetcode 86. Partition List (python)
leetcode 86. Partition List (python)考察双指针分割链表的基本操作
leetcode 2343. Query Kth Smallest Trimmed Number(python)
这是 Weekly Contest 302的第三题,难度 Medium ,主要考查的是对二维数组的排序
leetcode 2342. Max Sum of a Pair With Equal Sum of Digits (python)
这是 Weekly Contest 302的第二题,难度 Medium ,主要考查的是计数器的使用和排序
leetcode 2341. Maximum Number of Pairs in Array(python)
这是 Weekly Contest 302的第一题,难度 Eazy ,主要考查的是使用计数器统计数组元素出现次数
leetcode 1074. Number of Submatrices That Sum to Target(python)
leetcode 1074. Number of Submatrices That Sum to Target(python)考察前缀和
leetcode 695. Max Area of Island(python)
leetcode 695. Max Area of Island(python)使用 BFS 解题
leetcode 2281. Sum of Total Strength of Wizards(python)
leetcode 2281. Sum of Total Strength of Wizards(python)主要考察前缀和的前缀和计算
leetcode 105. Construct Binary Tree from Preorder and Inorder Traversal (python)
leetcode 105. Construct Binary Tree from Preorder and Inorder Traversal (python)使用前序遍历和中序遍历还原二叉树
leetcode 199. Binary Tree Right Side View(python)
leetcode 199. Binary Tree Right Side View(python)这道题考察的就是使用 BFS 进行二叉树的层序遍历
leetcode 102. Binary Tree Level Order Traversal(python)
leetcode 102. Binary Tree Level Order Traversal(python)这道题主要考察的是二叉树的层序遍历
leetcode 2320. Count Number of Ways to Place Houses(python)
本题是经典的斐波那契实际应用题,全文从最简单的暴力 DFS 解法开始讲解,不断提出优化解决方案,依次有记忆化 DFS 解法、动态规划解乏、压缩状态的动态规划解法,包学包会
下一页