File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -3102,23 +3102,29 @@ union 函数:合并两个顶点,并将他们的根结点保持一致。如
31023102
31033103#### [ 33. 搜索旋转排序数组] ( https://leetcode-cn.com/problems/search-in-rotated-sorted-array/ ) 没问题 但是要写的好看点
31043104
3105- #### [ 34. 在排序数组中查找元素的第一个和最后一个位置] ( https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/ ) 二分法会快一点
3106-
3107- #### [ 36. 有效的数独] ( https://leetcode-cn.com/problems/valid-sudoku/ )
3108-
3109- #### [ 38. 外观数列] ( https://leetcode-cn.com/problems/count-and-say/ )
3110-
3105+ #### [ 34. 在排序数组中查找元素的第一个和最后一个位置] ( https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/ ) X 二分法会快一点 再看一遍 ==必须==
31113106
3107+ #### [ 36. 有效的数独] ( https://leetcode-cn.com/problems/valid-sudoku/ ) 没问题 subboxes[ i / 3] [ j / 3] [ index] ++; 题解是这么判断的 没问题的
31123108
3109+ #### [ 38. 外观数列] ( https://leetcode-cn.com/problems/count-and-say/ ) 没问题
31133110
3111+ #### [ 41. 缺失的第一个正数] ( https://leetcode-cn.com/problems/first-missing-positive/ ) 没问题 题解的方法 就是每个数 放在他该放的位置底下 看看题解 持续的置换
31143112
3113+ #### [ 42. 接雨水] ( https://leetcode-cn.com/problems/trapping-rain-water/ ) X 看了题解 有点想法 动态规划 和双指针 都试试
31153114
3115+ #### [ 44. 通配符匹配] ( https://leetcode-cn.com/problems/wildcard-matching/ ) 没问题 自己再看下
31163116
3117+ #### [ 46. 全排列] ( https://leetcode-cn.com/problems/permutations/ ) 没问题
31173118
3119+ #### [ 48. 旋转图像] ( https://leetcode-cn.com/problems/rotate-image/ ) 没问题 自己写出了 原地旋转
31183120
3121+ #### [ 49. 字母异位词分组] ( https://leetcode-cn.com/problems/group-anagrams/ ) 没问题
31193122
3123+ #### [ 50. Pow(x, n)] ( https://leetcode-cn.com/problems/powx-n/ ) 就是最后的边界问题 处理可能有点问题 看看 我想我找到问题的所在了
31203124
3125+ #### [ 53. 最大子数组和] ( https://leetcode-cn.com/problems/maximum-subarray/ ) 直接秒
31213126
3127+ #### [ 54. 螺旋矩阵] ( https://leetcode-cn.com/problems/spiral-matrix/ ) 自己再想一遍 这个
31223128
31233129
31243130
You can’t perform that action at this time.
0 commit comments