分类
- Yiqun's 2-Look (4)
- 樊轶群Ukulele谱 (89)
- 樊轶群杂谈 (80)
- 樊轶群的魔方技术 (33)
- Roux技术 (7)
- 魔方2x2x2 (5)
- 魔方3x3x3 (18)
- 魔方Square-1 (4)
- 樊轶群的麻雀技术 (7)
- 樊轶群编程 (2)
- 每日LeetCode (93)
-
近期文章
- 用「数学期望」判断麻雀打得对不对
- Ukulele谱《下雨的时候特别想你》陈壹千
- 1千万次测试左桥情况分布
- 2021.12.10杂谈-巴塞罗那巴萨是怎么被梅西弄垮了
- 每日leetcode第0092天 0999. Available Captures for Rook
- 每日leetcode第0091天 1423. Maximum Points You Can Obtain from Cards
- 每日leetcode第0090天 0632. Smallest Range Covering Elements from K Lists
- 每日leetcode第0089天 0934. Shortest Bridge
- 每日leetcode第0088天 0342. Power of Four
- 每日leetcode第0087天 0326. Power of Three
近期评论
- Fluke发表在《用「数学期望」判断麻雀打得对不对》
- Edelbrock发表在《1千万次测试左桥情况分布》
- Glass发表在《Ukulele谱《下雨的时候特别想你》陈壹千》
- Zerg发表在《每日leetcode第0060天 0433. Minimum Genetic Mutation》
- 樊轶群发表在《每日leetcode第0059天 0925. Long Pressed Name》
- 樊轶群发表在《每日leetcode第0059天 0925. Long Pressed Name》
- Javeo发表在《每日leetcode第0059天 0925. Long Pressed Name》
- Bluetooth发表在《每日leetcode第0059天 0925. Long Pressed Name》
- 樊轶群发表在《每日leetcode第0043天 0547. Number of Provinces》
- Rigic发表在《每日leetcode第0043天 0547. Number of Provinces》
功能
2022年 7月 日 一 二 三 四 五 六 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
分类目录归档:每日LeetCode
每日leetcode第0092天 0999. Available Captures for Rook
九月底了,做一道简单的模拟题告别九月。 就用了简单的矩阵来完成放置棋子和判断阻挡 … 继续阅读
每日leetcode第0091天 1423. Maximum Points You Can Obtain from Cards
这是一道特别好玩的滑动窗口题目。 读懂题目后,我们就要开始组建一个完整窗口。 将 … 继续阅读
每日leetcode第0090天 0632. Smallest Range Covering Elements from K Lists
每日力扣终于来到了第90天。 今天挑战的题目叫“Smallest Range C … 继续阅读
每日leetcode第0089天 0934. Shortest Bridge
最短的桥,这是一道练习双搜的好题目。 思路也不复杂,先进行深度优先搜索,将第一个 … 继续阅读
每日leetcode第0088天 0342. Power of Four
这道题目是2的幂的一个进阶版。 首先我们知道所有4的幂一定是2的幂,所以2的幂需 … 继续阅读
每日leetcode第0087天 0326. Power of Three
首先还是要先判断是否为正整数。 接下来我们要考虑3是一个素数,所有它的次幂一定都 … 继续阅读
每日leetcode第0086天 0231. Power of Two
首先,要判断是否为正整数,如果不是,那么就不可能是2的幂。 接下来可以不使用循环 … 继续阅读
每日leetcode第0085天 1926. Nearest Exit from Entrance in Maze
这是一道快乐的宽度优先搜索题目。 我做宽度优先搜索都很快乐,经常是洋洋洒洒一大堆 … 继续阅读
每日leetcode第0084天 1464. Maximum Product of Two Elements in an Array
这是一道堆的题目,也就是优先队列的题目。 按照leetcode的方式,我们会获得 … 继续阅读
每日leetcode第0083天 0781. Rabbits in Forest
这是一道有趣的数学方面的问题。 今天刚好是中秋节,我们就不管月宫的兔子,来数数森 … 继续阅读