分类
- Yiqun's 2-Look (4)
- 樊轶群Ukulele谱 (89)
- 樊轶群杂谈 (81)
- 樊轶群的魔方技术 (33)
- Roux技术 (7)
- 魔方2x2x2 (5)
- 魔方3x3x3 (18)
- 魔方Square-1 (4)
- 樊轶群的麻雀技术 (7)
- 樊轶群编程 (2)
- 每日LeetCode (110)
-
近期文章
- Daily LeetCode – day0016 1422. Maximum Score After Splitting a String
- Daily LeetCode – day0015 0768. Max Chunks To Make Sorted II
- Daily LeetCode – day0014 1282. Group the People Given the Group Size They Belong To
- Daily LeetCode – day0013 1417. Reformat The String
- Daily LeetCode – day0012 0640. Solve the Equation
- Daily LeetCode – day0011 1413. Minimum Value to Get Positive Step by Step Sum
- Daily LeetCode – day0010 0761. Special Binary String
- Daily LeetCode – day0009 0636. Exclusive Time of Functions
- Daily LeetCode – day0008 1408. String Matching in an Array
- Daily LeetCode – day0007 0623. Add One Row to Tree
近期评论
- 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》
其他操作
月归档:2021年08月
每日leetcode第0062天 0994. Rotting Oranges
今天做的题目是简单的宽度优先搜索题。 就是用宽度优先搜索来模拟橘子的状态。 从每 … 继续阅读
每日leetcode第0061天 0870. Advantage Shuffle
这是一道双指针的题目。 结构体的排序是一开始就要做的事,不然B数组的数值排序后下 … 继续阅读
每日leetcode第0060天 0433. Minimum Genetic Mutation
这是daily leetcode系列第60天啦,今天这是一道宽度优先搜索的的题目 … 继续阅读
每日leetcode第0059天 0925. Long Pressed Name
这是一道很简单的双指针题目,比较两个字符串。 由于键盘可能会长按,所以指针2可能 … 继续阅读
每日leetcode第0058天 0219. Contains Duplicate II
这是一道滑动窗口的题目。 不过为了效率更高,我们维护的是一个哈希表的窗口。 元素 … 继续阅读
每日leetcode第0057天 1518. Water Bottles
这是一道模拟算法的题目。 拿到饮料就喝,瓶子如果能换就全换,换完之后马上喝。算法 … 继续阅读
每日leetcode第0056天 0217. Contains Duplicate
这是一道简单的入门题,但如果不适用哈希表,也就是傻循环了。 傻循环的时间复杂度是 … 继续阅读
每日leetcode第0055天 1838. Frequency of the Most Frequent Element
这是一道超级有趣的滑动窗口题目。 首先我们知道我们可以把大的数字定成目标,让小的 … 继续阅读
每日leetcode第0054天 1037. Valid Boomerang
今天又做了一道几何题目,这道题判断三个点是否共线。 其实用斜率就可以解决。求出a … 继续阅读
每日leetcode第0053天 1266. Minimum Time Visiting All Points
这是一道简答的几何题目。我们需要按照指定的坐标来走。 优先要斜着走,其实想通之后 … 继续阅读