# AlgorithmMarkdown **Repository Path**: pondali/AlgorithmMarkdown ## Basic Information - **Project Name**: AlgorithmMarkdown - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-03 - **Last Updated**: 2025-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Algorithm coding practice with Python3. > 力扣解题合集:https://github.com/BreezePython/AlgorithmMarkdown 欢迎关注我的公众号: **清风Python**,带你每日学习Python算法刷题的同时,了解更多python小知识。 有喜欢力扣刷题的小伙伴可以加我微信(King_Uranus)互相鼓励,共同进步,一起玩转超级码力! 我的个人博客:[https://qingfengpython.cn](https://qingfengpython.cn) PS:题目按照 难度、题号进行排序。 | 编 号 | 分 类 | 题 目 | 难 度 | 我的解题 | 力扣题目链接 | | ----- | ----- | ---- | ---- | ------ | -------- | |1|哈希表|1.两数之和|简单|[我的解题](Leetcode/哈希表/1.两数之和.md)|[点击跳转](https://leetcode-cn.com/problems/two-sum/)| |2|数学|7.整数反转|简单|[我的解题](Leetcode/数学/7.整数反转.md)|[点击跳转](https://leetcode-cn.com/problems/reverse-integer/)| |3|哈希表|13.罗马数字转整数|简单|[我的解题](Leetcode/哈希表/13.罗马数字转整数.md)|[点击跳转](https://leetcode-cn.com/problems/roman-to-integer/)| |4|数组|14.最长公共前缀|简单|[我的解题](Leetcode/数组/14.最长公共前缀.md)|[点击跳转](https://leetcode-cn.com/problems/longest-common-prefix/)| |5|栈|20.有效的括号|简单|[我的解题](Leetcode/栈/20.有效的括号.md)|[点击跳转](https://leetcode-cn.com/problems/valid-parentheses/)| |6|链表|21.合并两个有序链表|简单|[我的解题](Leetcode/链表/21.合并两个有序链表.md)|[点击跳转](https://leetcode-cn.com/problems/merge-two-sorted-lists/)| |7|数组|26.删除有序数组中的重复项|简单|[我的解题](Leetcode/数组/26.删除有序数组中的重复项.md)|[点击跳转](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array/)| |8|数组|27.移除元素|简单|[我的解题](Leetcode/数组/27.移除元素.md)|[点击跳转](https://leetcode-cn.com/problems/remove-element/solution/27yi-chu-yuan-su-yi-fen-zhong-jie-ti-by-juwbr/)| |9|二分|35.搜索插入位置|简单|[我的解题](Leetcode/二分/35.搜索插入位置.md)|[点击跳转](https://leetcode-cn.com/problems/search-insert-position/solution/35sou-suo-cha-ru-wei-zhi-pythonji-chu-er-c0xq/)| |10|数组|66.加一|简单|[我的解题](Leetcode/数组/66.加一.md)|[点击跳转](https://leetcode-cn.com/problems/plus-one/solution/66-jia-yi-shu-zu-dao-xu-bian-li-kuai-su-96h6b/)| |11|DP|70.爬楼梯|简单|[我的解题](Leetcode/DP/70.爬楼梯.md)|[点击跳转](https://leetcode-cn.com/problems/climbing-stairs/)| |12|链表|83.删除排序链表中的重复元素|简单|[我的解题](Leetcode/链表/83.删除排序链表中的重复元素.md)|[点击跳转](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list/)| |13|双指针|88.合并两个有序数组|简单|[我的解题](Leetcode/双指针/88.合并两个有序数组.md)|[点击跳转](https://leetcode-cn.com/problems/merge-sorted-array/)| |14|二叉树|100.相同的树|简单|[我的解题](Leetcode/二叉树/100.相同的树.md)|[点击跳转](https://leetcode-cn.com/problems/same-tree/)| |15|二叉树|104.二叉树的最大深度|简单|[我的解题](Leetcode/二叉树/104.二叉树的最大深度.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-depth-of-binary-tree/)| |16|二叉树|111.二叉树的最小深度|简单|[我的解题](Leetcode/二叉树/111.二叉树的最小深度.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/)| |17|二叉树|112.路径总和|简单|[我的解题](Leetcode/二叉树/112.路径总和.md)|[点击跳转](https://leetcode-cn.com/problems/path-sum/solution/112lu-jing-zong-he-python-di-gui-bfs-shu-lmym/)| |18|数组|118.杨辉三角|简单|[我的解题](Leetcode/数组/118.杨辉三角.md)|[点击跳转](https://leetcode-cn.com/problems/pascals-triangle/)| |19|数组|119.杨辉三角II|简单|[我的解题](Leetcode/数组/119.杨辉三角II.md)|[点击跳转](https://leetcode-cn.com/problems/pascals-triangle-ii/)| |20|数组|121.买卖股票的最佳时机|简单|[我的解题](Leetcode/数组/121.买卖股票的最佳时机.md)|[点击跳转](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/)| |21|数组|122.买卖股票的最佳时机II|简单|[我的解题](Leetcode/数组/122.买卖股票的最佳时机II.md)|[点击跳转](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii/)| |22|字符串|125.验证回文串|简单|[我的解题](Leetcode/字符串/125.验证回文串.md)|[点击跳转](https://leetcode-cn.com/problems/valid-palindrome/)| |23|链表|141.环形链表|简单|[我的解题](Leetcode/链表/141.环形链表.md)|[点击跳转](https://leetcode-cn.com/problems/linked-list-cycle/solution/141huan-xing-lian-biao-pythonji-he-yu-ku-1yuu/)| |24|二叉树|144.二叉树的前序遍历|简单|[我的解题](Leetcode/二叉树/144.二叉树的前序遍历.md)|[点击跳转](https://leetcode-cn.com/problems/binary-tree-preorder-traversal/)| |25|二叉树|145.二叉树的后序遍历|简单|[我的解题](Leetcode/二叉树/145.二叉树的后序遍历.md)|[点击跳转](https://leetcode-cn.com/problems/binary-tree-postorder-traversal/solution/145er-cha-shu-de-hou-xu-bian-li-di-gui-y-6qgv/)| |26|栈|155.最小栈|简单|[我的解题](Leetcode/栈/155.最小栈.md)|[点击跳转](https://leetcode-cn.com/problems/min-stack/)| |27|数学|168.Excel表列名称|简单|[我的解题](Leetcode/数学/168.Excel表列名称.md)|[点击跳转](https://leetcode-cn.com/problems/excel-sheet-column-title/solution/168excelbiao-lie-ming-cheng-excelbiao-mi-sv3v/)| |28|数学|171.Excel表列序号|简单|[我的解题](Leetcode/数学/171.Excel表列序号.md)|[点击跳转](https://leetcode-cn.com/problems/excel-sheet-column-number/solution/171excelbiao-lie-xu-hao-xiang-xi-jie-xi-4bygt/)| |29|异或|190.颠倒二进制位|简单|[我的解题](Leetcode/异或/190.颠倒二进制位.md)|[点击跳转](https://leetcode-cn.com/problems/reverse-bits/)| |30|字符串|191.位1的个数|简单|[我的解题](Leetcode/字符串/191.位1的个数.md)|[点击跳转](https://leetcode-cn.com/problems/number-of-1-bits/)| |31|数学|202.快乐数|简单|[我的解题](Leetcode/数学/202.快乐数.md)|[点击跳转](https://leetcode-cn.com/problems/happy-number/solution/202kuai-le-shu-zi-fu-chuan-yu-shu-xue-sh-q2np/)| |32|链表|203.移除链表元素|简单|[我的解题](Leetcode/链表/203.移除链表元素.md)|[点击跳转](https://leetcode-cn.com/problems/remove-linked-list-elements/solution/203yi-chu-lian-biao-yuan-su-tu-jie-lian-u2qii/)| |33|哈希表|205.同构字符串|简单|[我的解题](Leetcode/哈希表/205.同构字符串.md)|[点击跳转](https://leetcode-cn.com/problems/isomorphic-strings/)| |34|链表|206.反转链表|简单|[我的解题](Leetcode/链表/206.反转链表.md)|[点击跳转](https://leetcode-cn.com/problems/reverse-linked-list/)| |35|队列|225.用队列实现栈|简单|[我的解题](Leetcode/队列/225.用队列实现栈.md)|[点击跳转](https://leetcode-cn.com/problems/implement-stack-using-queues/solution/225yong-dui-lie-shi-xian-zhan-by-qingfen-igp1/)| |36|数组|228.汇总区间|简单|[我的解题](Leetcode/数组/228.汇总区间.md)|[点击跳转](https://leetcode-cn.com/problems/summary-ranges/solution/228hui-zong-qu-jian-jie-ti-ji-qiao-wei-b-trq1/)| |37|链表|234.回文链表|简单|[我的解题](Leetcode/链表/234.回文链表.md)|[点击跳转](https://leetcode-cn.com/problems/palindrome-linked-list/)| |38|二叉树|235.二叉搜索树的最近公共祖先|简单|[我的解题](Leetcode/二叉树/235.二叉搜索树的最近公共祖先.md)|[点击跳转](https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-search-tree/solution/235er-cha-sou-suo-shu-de-zui-jin-gong-go-zd5j/)| |39|数学|263.丑数|简单|[我的解题](Leetcode/数学/263.丑数.md)|[点击跳转](https://leetcode-cn.com/problems/ugly-number/)| |40|二分|278.第一个错误的版本|简单|[我的解题](Leetcode/二分/278.第一个错误的版本.md)|[点击跳转](https://leetcode-cn.com/problems/first-bad-version/solution/278di-yi-ge-cuo-wu-de-ban-ben-by-qingfen-gp99/)| |41|双指针|283.移动零|简单|[我的解题](Leetcode/双指针/283.移动零.md)|[点击跳转](https://leetcode-cn.com/problems/move-zeroes/solution/283yi-dong-ling-shuang-zhi-zhen-yi-chu-y-kgkh/)| |42|哈希表|290.单词规律|简单|[我的解题](Leetcode/哈希表/290.单词规律.md)|[点击跳转](None)| |43|设计|303.区域和检索-数组不可变|简单|[我的解题](Leetcode/设计/303.区域和检索-数组不可变.md)|[点击跳转](https://leetcode-cn.com/problems/range-sum-query-immutable/)| |44|数学|342.4的幂|简单|[我的解题](Leetcode/数学/342.4的幂.md)|[点击跳转](https://leetcode-cn.com/problems/power-of-four/solution/3424de-mi-kao-lu-na-yao-duo-gan-ma-while-5gi8/)| |45|二分|374.猜数字大小|简单|[我的解题](Leetcode/二分/374.猜数字大小.md)|[点击跳转](https://leetcode-cn.com/problems/guess-number-higher-or-lower/solution/374cai-shu-zi-da-xiao-pythoner-fen-cha-z-6b8x/)| |46|哈希表|387.字符串中的第一个唯一字符|简单|[我的解题](Leetcode/哈希表/387.字符串中的第一个唯一字符.md)|[点击跳转](https://leetcode-cn.com/problems/first-unique-character-in-a-string/)| |47|双指针|392.判断子序列|简单|[我的解题](Leetcode/双指针/392.判断子序列.md)|[点击跳转](https://leetcode-cn.com/problems/is-subsequence/)| |48|双指针|408.有效单词缩写|简单|[我的解题](Leetcode/双指针/408.有效单词缩写.md)|[点击跳转](https://leetcode-cn.com/problems/valid-word-abbreviation/solution/408you-xiao-dan-ci-suo-xie-pythonzhi-zhe-2tc7/)| |49|字符串|415.字符串相加|简单|[我的解题](Leetcode/字符串/415.字符串相加.md)|[点击跳转](https://leetcode-cn.com/problems/add-strings/)| |50|异或|461.汉明距离|简单|[我的解题](Leetcode/异或/461.汉明距离.md)|[点击跳转](https://leetcode-cn.com/problems/hamming-distance/)| |51|数组|463.岛屿的周长|简单|[我的解题](Leetcode/数组/463.岛屿的周长.md)|[点击跳转](https://leetcode-cn.com/problems/island-perimeter/)| |52|模拟|482.密钥格式化|简单|[我的解题](Leetcode/模拟/482.密钥格式化.md)|[点击跳转](https://leetcode-cn.com/problems/license-key-formatting/solution/482mi-yao-ge-shi-hua-zi-fu-chuan-mo-ni-d-r24m/)| |53|数组|485.最大连续1的个数|简单|[我的解题](Leetcode/数组/485.最大连续1的个数.md)|[点击跳转](https://leetcode-cn.com/problems/max-consecutive-ones/solution/485zui-da-lian-xu-1de-ge-shu-yi-ci-bian-jkt8i/)| |54|数学|495.提莫攻击|简单|[我的解题](Leetcode/数学/495.提莫攻击.md)|[点击跳转](https://leetcode-cn.com/problems/teemo-attacking/)| |55|栈|496.下一个更大元素I|简单|[我的解题](Leetcode/栈/496.下一个更大元素I.md)|[点击跳转](https://leetcode-cn.com/problems/next-greater-element-i/solution/496xia-yi-ge-geng-da-yuan-su-i-by-qingfe-qfu9/)| |56|字符串|500.键盘行|简单|[我的解题](Leetcode/字符串/500.键盘行.md)|[点击跳转](https://leetcode-cn.com/problems/keyboard-row/solution/500jian-pan-xing-pythonjava-xun-huan-bi-bk09v/)| |57|数组|561.数组拆分I|简单|[我的解题](Leetcode/数组/561.数组拆分I.md)|[点击跳转](https://leetcode-cn.com/problems/array-partition-i/)| |58|数组|566.重塑矩阵|简单|[我的解题](Leetcode/数组/566.重塑矩阵.md)|[点击跳转](https://leetcode-cn.com/problems/reshape-the-matrix/)| |59|双指针|643.子数组最大平均数I|简单|[我的解题](Leetcode/双指针/643.子数组最大平均数I.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-remove-to-make-valid-parentheses/)| |60|数学|645.错误的集合|简单|[我的解题](Leetcode/数学/645.错误的集合.md)|[点击跳转](https://leetcode-cn.com/problems/set-mismatch/solution/645cuo-wu-de-ji-he-shu-zu-bian-li-ha-xi-94hcp/)| |61|模拟|657.机器人能否返回原点|简单|[我的解题](Leetcode/模拟/657.机器人能否返回原点.md)|[点击跳转](https://leetcode-cn.com/problems/robot-return-to-origin/solution/657ji-qi-ren-neng-fou-fan-hui-yuan-dian-054uj/)| |62|栈|682.棒球比赛|简单|[我的解题](Leetcode/栈/682.棒球比赛.md)|[点击跳转](https://leetcode-cn.com/problems/baseball-game/)| |63|设计|690.员工的重要性|简单|[我的解题](Leetcode/设计/690.员工的重要性.md)|[点击跳转](https://leetcode-cn.com/problems/employee-importance/)| |64|哈希表|705.设计哈希集合|简单|[我的解题](Leetcode/哈希表/705.设计哈希集合.md)|[点击跳转](https://leetcode-cn.com/problems/design-hashset/solution/705-she-ji-ha-xi-ji-he-xiang-na-yao-duo-2jo2w/)| |65|栈|716.最大栈|简单|[我的解题](Leetcode/栈/716.最大栈.md)|[点击跳转](https://leetcode-cn.com/problems/max-stack/)| |66|前缀和|724.寻找数组的中心下标|简单|[我的解题](Leetcode/前缀和/724.寻找数组的中心下标.md)|[点击跳转](https://leetcode-cn.com/problems/find-pivot-index/)| |67|哈希表|734.句子相似性|简单|[我的解题](Leetcode/哈希表/734.句子相似性.md)|[点击跳转](https://leetcode-cn.com/problems/sentence-similarity/solution/734ju-zi-xiang-si-xing-pythonha-xi-ji-he-zdaq/)| |68|二叉树|783.二叉搜索树节点最小距离|简单|[我的解题](Leetcode/二叉树/783.二叉搜索树节点最小距离.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-distance-between-bst-nodes/)| |69|数组|821.字符的最短距离|简单|[我的解题](Leetcode/数组/821.字符的最短距离.md)|[点击跳转](https://leetcode-cn.com/problems/shortest-distance-to-a-character/)| |70|栈|844.比较含退格的字符串|简单|[我的解题](Leetcode/栈/844.比较含退格的字符串.md)|[点击跳转](https://leetcode-cn.com/problems/backspace-string-compare/)| |71|数组|852.山脉数组的峰顶索引|简单|[我的解题](Leetcode/数组/852.山脉数组的峰顶索引.md)|[点击跳转](https://leetcode-cn.com/problems/peak-index-in-a-mountain-array/solution/852shan-mai-shu-zu-de-feng-ding-suo-yin-9krsr/)| |72|字符串|859.亲密字符串|简单|[我的解题](Leetcode/字符串/859.亲密字符串.md)|[点击跳转](https://leetcode-cn.com/problems/buddy-strings/solution/859qin-mi-zi-fu-chuan-pythonjava-jian-ji-4lk1/)| |73|贪心|860.柠檬水找零|简单|[我的解题](Leetcode/贪心/860.柠檬水找零.md)|[点击跳转](https://leetcode-cn.com/problems/lemonade-change/solution/860ning-meng-shui-zhao-ling-pythontan-xi-bj83/)| |74|二叉树|872.叶子相似的树|简单|[我的解题](Leetcode/二叉树/872.叶子相似的树.md)|[点击跳转](https://leetcode-cn.com/problems/leaf-similar-trees/)| |75|双指针|925.长按键入|简单|[我的解题](Leetcode/双指针/925.长按键入.md)|[点击跳转](https://leetcode-cn.com/problems/long-pressed-name/solution/925chang-an-jian-ru-python-java-shuang-z-4cjy/)| |76|深搜|993.二叉树的堂兄弟节点|简单|[我的解题](Leetcode/深搜/993.二叉树的堂兄弟节点.md)|[点击跳转](https://leetcode-cn.com/problems/cousins-in-binary-tree/)| |77|哈希表|997.找到小镇的法官|简单|[我的解题](Leetcode/哈希表/997.找到小镇的法官.md)|[点击跳转](https://leetcode-cn.com/problems/find-the-town-judge/solution/997zhao-dao-xiao-zhen-de-fa-guan-ha-xi-b-x7eu/)| |78|二叉树|剑指Offer55-I.二叉树的深度|简单|[我的解题](Leetcode/二叉树/剑指Offer55-I.二叉树的深度.md)|[点击跳转](https://leetcode-cn.com/problems/er-cha-shu-de-shen-du-lcof/)| |79|剑指offer|剑指OfferII001.整数除法|简单|[我的解题](Leetcode/剑指offer/剑指OfferII001.整数除法.md)|[点击跳转](https://leetcode-cn.com/problems/xoh6Oh/)| |80|剑指offer|剑指OfferII002.二进制加法|简单|[我的解题](Leetcode/剑指offer/剑指OfferII002.二进制加法.md)|[点击跳转](https://leetcode-cn.com/problems/JFETK5/solution/shua-chuan-jian-zhi-offer-day02-zheng-sh-obx6/)| |81|剑指offer|剑指OfferII006.排序数组中两个数字之和|简单|[我的解题](Leetcode/剑指offer/剑指OfferII006.排序数组中两个数字之和.md)|[点击跳转](https://leetcode-cn.com/problems/kLl5u1/solution/shua-chuan-jian-zhi-offer-day05-shu-zu-i-ygiw/)| |82|剑指offer|剑指offerII018.有效的回文|简单|[我的解题](Leetcode/剑指offer/剑指offerII018.有效的回文.md)|[点击跳转](https://leetcode-cn.com/problems/XltzEq/solution/shua-chuan-jian-zhi-offer-day10-zi-fu-ch-y5ua/)| |83|剑指offer|剑指offerII019.最多删除一个字符得到回文|简单|[我的解题](Leetcode/剑指offer/剑指offerII019.最多删除一个字符得到回文.md)|[点击跳转](https://leetcode-cn.com/problems/RQku0D/solution/shua-chuan-jian-zhi-offer-day10-zi-fu-ch-b0ub/)| |84|剑指offer|剑指offerII023.两个链表的第一个重合节点|简单|[我的解题](Leetcode/剑指offer/剑指offerII023.两个链表的第一个重合节点.md)|[点击跳转](https://leetcode-cn.com/problems/3u1WK4/solution/shua-chuan-jian-zhi-offer-day12-lian-bia-m5nz/)| |85|剑指offer|剑指offerII024.反转链表|简单|[我的解题](Leetcode/剑指offer/剑指offerII024.反转链表.md)|[点击跳转](https://leetcode-cn.com/problems/UHnkqh/solution/shua-chuan-jian-zhi-offer-day12-lian-bia-190d/)| |86|剑指offer|剑指OfferII032.有效的变位词|简单|[我的解题](Leetcode/剑指offer/剑指OfferII032.有效的变位词.md)|[点击跳转](https://leetcode-cn.com/problems/dKk3P7/solution/shua-chuan-jian-zhi-offer-day15-ha-xi-bi-5pqx/)| |87|剑指offer|剑指OfferII041.滑动窗口的平均值|简单|[我的解题](Leetcode/剑指offer/剑指OfferII041.滑动窗口的平均值.md)|[点击跳转](https://leetcode-cn.com/problems/qIsx9U/solution/shua-chuan-jian-zhi-offer-day20-dui-lie-09ber/)| |88|剑指offer|剑指OfferII042.最近请求次数|简单|[我的解题](Leetcode/剑指offer/剑指OfferII042.最近请求次数.md)|[点击跳转](https://leetcode-cn.com/problems/H8086Q/solution/shua-chuan-jian-zhi-offer-day18-zhan-ii-de51o/)| |89|哈希表|剑指Offer03.数组中重复的数字|简单|[我的解题](Leetcode/哈希表/剑指Offer03.数组中重复的数字.md)|[点击跳转](https://leetcode-cn.com/problems/shu-zu-zhong-zhong-fu-de-shu-zi-lcof/)| |90|堆|meituan-003.小美的跑腿代购|简单|[我的解题](Leetcode/堆/meituan-003.小美的跑腿代购.md)|[点击跳转](https://leetcode-cn.com/problems/GXV5dX/solution/pythonji-chu-de-dui-pai-xu-cao-zuo-by-qi-xh1u/)| |91|字符串|meituan-001.小美的用户名|简单|[我的解题](Leetcode/字符串/meituan-001.小美的用户名.md)|[点击跳转](https://leetcode-cn.com/problems/BaR9fy/solution/meituan-001-xiao-mei-de-yong-hu-ming-pyt-m1n7/)| |92|字符串|meituan-006.小团的神秘暗号|简单|[我的解题](Leetcode/字符串/meituan-006.小团的神秘暗号.md)|[点击跳转](https://leetcode-cn.com/problems/z3XKBp/)| |93|数学|剑指Offer53-II.0~n-1中缺失的数字|简单|[我的解题](Leetcode/数学/剑指Offer53-II.0~n-1中缺失的数字.md)|[点击跳转](https://leetcode-cn.com/problems/que-shi-de-shu-zi-lcof/)| |94|数学|面试题17.10.主要元素|简单|[我的解题](Leetcode/数学/面试题17.10.主要元素.md)|[点击跳转](https://leetcode-cn.com/problems/find-majority-element-lcci/)| |95|数组|LCP28.采购方案|简单|[我的解题](Leetcode/数组/LCP28.采购方案.md)|[点击跳转](https://leetcode-cn.com/problems/4xy4Wx/solution/)| |96|数组|LCP29.乐团站位|简单|[我的解题](Leetcode/数组/LCP29.乐团站位.md)|[点击跳转](https://leetcode-cn.com/problems/SNJvJP/)| |97|栈|剑指Offer09.用两个栈实现队列|简单|[我的解题](Leetcode/栈/剑指Offer09.用两个栈实现队列.md)|[点击跳转](https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof/solution/jian-zhi-offer09yong-liang-ge-zhan-shi-x-hybm/)| |98|链表|剑指Offer22.链表中倒数第k个节点|简单|[我的解题](Leetcode/链表/剑指Offer22.链表中倒数第k个节点.md)|[点击跳转](https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof/)| |99|链表|剑指Offer24.反转链表|简单|[我的解题](Leetcode/链表/剑指Offer24.反转链表.md)|[点击跳转](https://leetcode-cn.com/problems/fan-zhuan-lian-biao-lcof/)| |100|链表|面试题02.01.移除重复节点|简单|[我的解题](Leetcode/链表/面试题02.01.移除重复节点.md)|[点击跳转](https://leetcode-cn.com/problems/remove-duplicate-node-lcci/solution/mian-shi-ti-0201yi-chu-zhong-fu-jie-dian-rnx1/)| |101|滑窗|1004.最大连续1的个数III|简单|[我的解题](Leetcode/滑窗/1004.最大连续1的个数III.md)|[点击跳转](https://leetcode-cn.com/problems/max-consecutive-ones-iii/solution/1004zui-da-lian-xu-1de-ge-shu-iii-by-qin-9osc/)| |102|栈|1021.删除最外层的括号|简单|[我的解题](Leetcode/栈/1021.删除最外层的括号.md)|[点击跳转](https://leetcode-cn.com/problems/remove-outermost-parentheses/solution/1021shan-chu-zui-wai-ceng-de-gua-hao-li-v8c1c/)| |103|堆|1046.最后一块石头的重量|简单|[我的解题](Leetcode/堆/1046.最后一块石头的重量.md)|[点击跳转](https://leetcode-cn.com/problems/last-stone-weight/solution/1046zui-hou-yi-kuai-shi-tou-de-zhong-lia-1xub/)| |104|哈希表|1436.旅行终点站|简单|[我的解题](Leetcode/哈希表/1436.旅行终点站.md)|[点击跳转](https://leetcode-cn.com/problems/destination-city/)| |105|栈|1475.商品折扣后的最终价格|简单|[我的解题](Leetcode/栈/1475.商品折扣后的最终价格.md)|[点击跳转](https://leetcode-cn.com/problems/final-prices-with-a-special-discount-in-a-shop/solution/1475shang-pin-zhe-kou-hou-de-zui-zhong-j-h8xm/)| |106|异或|1486.数组异或操作|简单|[我的解题](Leetcode/异或/1486.数组异或操作.md)|[点击跳转](https://leetcode-cn.com/problems/xor-operation-in-an-array/)| |107|数学|1523.在区间范围内统计奇数数目|简单|[我的解题](Leetcode/数学/1523.在区间范围内统计奇数数目.md)|[点击跳转](https://leetcode-cn.com/problems/count-odd-numbers-in-an-interval-range/solution/1523zai-qu-jian-fan-wei-nei-tong-ji-qi-s-02bl/)| |108|字符串|1576.替换所有的问号|简单|[我的解题](Leetcode/字符串/1576.替换所有的问号.md)|[点击跳转](https://leetcode-cn.com/problems/replace-all-s-to-avoid-consecutive-repeating-characters/solution/1576ti-huan-suo-you-de-wen-hao-duo-chong-co6m/)| |109|数组|1603.设计停车系统|简单|[我的解题](Leetcode/数组/1603.设计停车系统.md)|[点击跳转](https://leetcode-cn.com/problems/design-parking-system/)| |110|数学|1716.计算力扣银行的钱|简单|[我的解题](Leetcode/数学/1716.计算力扣银行的钱.md)|[点击跳转](https://leetcode-cn.com/problems/calculate-money-in-leetcode-bank/solution/1716ji-suan-li-kou-yin-xing-de-qian-tui-thr3e/)| |111|异或|1720.解码异或后的数组|简单|[我的解题](Leetcode/异或/1720.解码异或后的数组.md)|[点击跳转](https://leetcode-cn.com/problems/decode-xored-array/)| |112|前缀和|1732.找到最高海拔|简单|[我的解题](Leetcode/前缀和/1732.找到最高海拔.md)|[点击跳转](https://leetcode-cn.com/problems/find-the-highest-altitude/solution/1732zhao-dao-zui-gao-hai-ba-biao-zhun-qi-c89k/)| |113|数学|1812.判断国际象棋棋盘中一个格子的颜色|简单|[我的解题](Leetcode/数学/1812.判断国际象棋棋盘中一个格子的颜色.md)|[点击跳转](https://leetcode-cn.com/problems/determine-color-of-a-chessboard-square/solution/5705-pan-duan-guo-ji-xiang-qi-qi-pan-zho-xuln/)| |114|数学|1837.K进制表示下的各位数字总和|简单|[我的解题](Leetcode/数学/1837.K进制表示下的各位数字总和.md)|[点击跳转](https://leetcode-cn.com/problems/sum-of-digits-in-base-k/solution/5738kjin-zhi-biao-shi-xia-de-ge-wei-shu-47xtn/)| |115|字符串|1880.检查某单词是否等于两单词之和|简单|[我的解题](Leetcode/字符串/1880.检查某单词是否等于两单词之和.md)|[点击跳转](https://leetcode-cn.com/problems/check-if-word-equals-summation-of-two-words/solution/1880jian-cha-mou-dan-ci-shi-fou-deng-yu-342ul/)| |116|数组|5709.最大升序子数组和|简单|[我的解题](Leetcode/数组/5709.最大升序子数组和.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-ascending-subarray-sum/solution/5709zui-da-sheng-xu-zi-shu-zu-he-pythony-3gdj/)| |117|字符串|5713.字符串中不同整数的数目|简单|[我的解题](Leetcode/字符串/5713.字符串中不同整数的数目.md)|[点击跳转](https://leetcode-cn.com/problems/number-of-different-integers-in-a-string/)| |118|数组|5717.最少操作使数组递增|简单|[我的解题](Leetcode/数组/5717.最少操作使数组递增.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-operations-to-make-the-array-increasing/)| |119|字符串|5722.截断句子|简单|[我的解题](Leetcode/字符串/5722.截断句子.md)|[点击跳转](https://leetcode-cn.com/problems/truncate-sentence/)| |120|字符串|5730.将所有数字用字符替换|简单|[我的解题](Leetcode/字符串/5730.将所有数字用字符替换.md)|[点击跳转](https://leetcode-cn.com/problems/replace-all-digits-with-characters/)| |121|哈希表|5734.判断句子是否为全字母句|简单|[我的解题](Leetcode/哈希表/5734.判断句子是否为全字母句.md)|[点击跳转](https://leetcode-cn.com/problems/check-if-the-sentence-is-pangram/)| |122|数组|5746.到目标元素的最小距离|简单|[我的解题](Leetcode/数组/5746.到目标元素的最小距离.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-distance-to-the-target-element/)| |123|字符串|5838.检查字符串是否为数组前缀|简单|[我的解题](Leetcode/字符串/5838.检查字符串是否为数组前缀.md)|[点击跳转](https://leetcode-cn.com/problems/check-if-string-is-a-prefix-of-array/)| |124|真题|9900.不喜欢4的司机|简单|[我的解题](Leetcode/真题/9900.不喜欢4的司机.md)|[点击跳转](None)| |125|链表|2.两数相加|中等|[我的解题](Leetcode/链表/2.两数相加.md)|[点击跳转](https://leetcode-cn.com/problems/add-two-numbers/)| |126|双指针|3.无重复字符的最长子串|中等|[我的解题](Leetcode/双指针/3.无重复字符的最长子串.md)|[点击跳转](https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/)| |127|字符串|5.最长回文子串|中等|[我的解题](Leetcode/字符串/5.最长回文子串.md)|[点击跳转](https://leetcode-cn.com/problems/longest-palindromic-substring/solution/5zui-chang-hui-wen-zi-chuan-hui-wen-chan-z3yj/)| |128|数组|6.Z字形变换|中等|[我的解题](Leetcode/数组/6.Z字形变换.md)|[点击跳转](https://leetcode-cn.com/problems/zigzag-conversion/)| |129|字符串|8.字符串转换整数|中等|[我的解题](Leetcode/字符串/8.字符串转换整数.md)|[点击跳转](https://leetcode-cn.com/problems/string-to-integer-atoi/)| |130|双指针|11.盛最多水的容器|中等|[我的解题](Leetcode/双指针/11.盛最多水的容器.md)|[点击跳转](https://leetcode-cn.com/problems/container-with-most-water/)| |131|数组|12.整数转罗马数字|中等|[我的解题](Leetcode/数组/12.整数转罗马数字.md)|[点击跳转](https://leetcode-cn.com/problems/integer-to-roman/)| |132|双指针|16.最接近的三数之和|中等|[我的解题](Leetcode/双指针/16.最接近的三数之和.md)|[点击跳转](https://leetcode-cn.com/problems/3sum-closest/)| |133|深搜|17.电话号码的字母组合|中等|[我的解题](Leetcode/深搜/17.电话号码的字母组合.md)|[点击跳转](https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/)| |134|双指针|18.四数之和|中等|[我的解题](Leetcode/双指针/18.四数之和.md)|[点击跳转](https://leetcode-cn.com/problems/4sum/)| |135|链表|19.删除链表的倒数第N个结点|中等|[我的解题](Leetcode/链表/19.删除链表的倒数第N个结点.md)|[点击跳转](https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/solution/19shan-chu-lian-biao-de-dao-shu-di-nge-j-7x3a/)| |136|链表|24.两两交换链表中的节点|中等|[我的解题](Leetcode/链表/24.两两交换链表中的节点.md)|[点击跳转](https://leetcode-cn.com/problems/swap-nodes-in-pairs/)| |137|双指针|28.实现strStr()|中等|[我的解题](Leetcode/双指针/28.实现strStr().md)|[点击跳转](https://leetcode-cn.com/problems/implement-strstr/)| |138|二分|33.搜索旋转排序数组|中等|[我的解题](Leetcode/二分/33.搜索旋转排序数组.md)|[点击跳转](https://leetcode-cn.com/problems/search-in-rotated-sorted-array/solution/33sou-suo-xuan-zhuan-pai-xu-shu-zu-pytho-2oia/)| |139|二分|34.在排序数组中查找元素的第一个和最后一个位置|中等|[我的解题](Leetcode/二分/34.在排序数组中查找元素的第一个和最后一个位置.md)|[点击跳转](https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/solution/34zai-pai-xu-shu-zu-zhong-cha-zhao-yuan-zoga7/)| |140|数组|34.数组中查找元素的第一和最后一个位置|中等|[我的解题](Leetcode/数组/34.数组中查找元素的第一和最后一个位置.md)|[点击跳转](https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/)| |141|哈希表|36.有效的数独|中等|[我的解题](Leetcode/哈希表/36.有效的数独.md)|[点击跳转](https://leetcode-cn.com/problems/valid-sudoku/)| |142|深搜|46.全排列|中等|[我的解题](Leetcode/深搜/46.全排列.md)|[点击跳转](https://leetcode-cn.com/problems/permutations/)| |143|深搜|47.全排列II|中等|[我的解题](Leetcode/深搜/47.全排列II.md)|[点击跳转](https://leetcode-cn.com/problems/permutations-ii/)| |144|哈希表|49.字母异位词分组|中等|[我的解题](Leetcode/哈希表/49.字母异位词分组.md)|[点击跳转](https://leetcode-cn.com/problems/group-anagrams/solution/49-zi-mu-yi-wei-ci-fen-zu-hashmapkuai-su-lkkd/)| |145|数学|50.Pow|中等|[我的解题](Leetcode/数学/50.Pow.md)|[点击跳转](https://leetcode-cn.com/problems/powx-n/solution/50-powx-n-kuai-su-mi-de-ji-chu-zhi-shi-d-z7ny/)| |146|数组|54.螺旋矩阵|中等|[我的解题](Leetcode/数组/54.螺旋矩阵.md)|[点击跳转](https://leetcode-cn.com/problems/spiral-matrix/)| |147|贪心|55.跳跃游戏|中等|[我的解题](Leetcode/贪心/55.跳跃游戏.md)|[点击跳转](https://leetcode-cn.com/problems/jump-game/)| |148|贪心|56.合并区间|中等|[我的解题](Leetcode/贪心/56.合并区间.md)|[点击跳转](https://leetcode-cn.com/problems/merge-intervals/solution/56he-bing-qu-jian-pai-xu-tan-xin-by-qing-3jm4/)| |149|数组|59.螺旋矩阵II|中等|[我的解题](Leetcode/数组/59.螺旋矩阵II.md)|[点击跳转](https://leetcode-cn.com/problems/spiral-matrix/)| |150|链表|61.旋转链表|中等|[我的解题](Leetcode/链表/61.旋转链表.md)|[点击跳转](https://leetcode-cn.com/problems/rotate-list/)| |151|栈|71.简化路径|中等|[我的解题](Leetcode/栈/71.简化路径.md)|[点击跳转](https://leetcode-cn.com/problems/simplify-path/solution/71-jian-hua-lu-jing-biao-zhun-de-zhan-we-0ebf/)| |152|数组|73.矩阵置零|中等|[我的解题](Leetcode/数组/73.矩阵置零.md)|[点击跳转](https://leetcode-cn.com/problems/set-matrix-zeroes/)| |153|数组|74.搜索二维矩阵|中等|[我的解题](Leetcode/数组/74.搜索二维矩阵.md)|[点击跳转](https://leetcode-cn.com/problems/search-a-2d-matrix/)| |154|双指针|75.颜色分类|中等|[我的解题](Leetcode/双指针/75.颜色分类.md)|[点击跳转](https://leetcode-cn.com/problems/sort-colors/)| |155|深搜|79.单词搜索|中等|[我的解题](Leetcode/深搜/79.单词搜索.md)|[点击跳转](https://leetcode-cn.com/problems/word-search/solution/79dan-ci-sou-suo-li-jie-liang-ge-xiao-ke-rh6b/)| |156|双指针|80.删除有序数组中的重复项II|中等|[我的解题](Leetcode/双指针/80.删除有序数组中的重复项II.md)|[点击跳转](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array-ii/)| |157|二分|81.搜索旋转排序数组II|中等|[我的解题](Leetcode/二分/81.搜索旋转排序数组II.md)|[点击跳转](https://leetcode-cn.com/problems/search-in-rotated-sorted-array-ii/solution/81sou-suo-xuan-zhuan-pai-xu-shu-zu-ii-33-7lz5/)| |158|链表|86.分隔链表|中等|[我的解题](Leetcode/链表/86.分隔链表.md)|[点击跳转](https://leetcode-cn.com/problems/partition-list/solution/86fen-ge-lian-biao-chuang-jian-da-xiao-l-gy5y/)| |159|二叉树|98.验证二叉搜索树|中等|[我的解题](Leetcode/二叉树/98.验证二叉搜索树.md)|[点击跳转](https://leetcode-cn.com/problems/validate-binary-search-tree/)| |160|广搜|102.二叉树的层序遍历|中等|[我的解题](Leetcode/广搜/102.二叉树的层序遍历.md)|[点击跳转](https://leetcode-cn.com/problems/binary-tree-level-order-traversal/solution/102er-cha-shu-de-ceng-xu-bian-li-shen-du-oqy7/)| |161|双指针|123.买卖股票的最佳时机III|中等|[我的解题](Leetcode/双指针/123.买卖股票的最佳时机III.md)|[点击跳转](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-iii/)| |162|深搜|130.被围绕的区域|中等|[我的解题](Leetcode/深搜/130.被围绕的区域.md)|[点击跳转](https://leetcode-cn.com/problems/surrounded-regions/solution/130bei-wei-rao-de-qu-yu-shen-du-you-xian-6h6d/)| |163|贪心|134.加油站|中等|[我的解题](Leetcode/贪心/134.加油站.md)|[点击跳转](https://leetcode-cn.com/problems/gas-station/solution/134jia-you-zhan-pythonbao-li-tan-xin-shu-678o/)| |164|栈|150.逆波兰表达式求值|中等|[我的解题](Leetcode/栈/150.逆波兰表达式求值.md)|[点击跳转](https://leetcode-cn.com/problems/evaluate-reverse-polish-notation/solution/150-ni-bo-lan-biao-da-shi-qiu-zhi-python-o8am/)| |165|数组|153.寻找旋转排序数组中的最小值|中等|[我的解题](Leetcode/数组/153.寻找旋转排序数组中的最小值.md)|[点击跳转](https://leetcode-cn.com/problems/find-minimum-in-rotated-sorted-array/)| |166|数组|179.最大数|中等|[我的解题](Leetcode/数组/179.最大数.md)|[点击跳转](https://leetcode-cn.com/problems/largest-number/)| |167|DP|198.打家劫舍|中等|[我的解题](Leetcode/DP/198.打家劫舍.md)|[点击跳转](https://leetcode-cn.com/problems/house-robber/)| |168|深搜|200.岛屿数量|中等|[我的解题](Leetcode/深搜/200.岛屿数量.md)|[点击跳转](https://leetcode-cn.com/problems/number-of-islands/solution/200dao-yu-shu-liang-ju-zhen-sou-suo-top3-ww71/)| |169|字典树|208.实现Trie(前缀树)|中等|[我的解题](Leetcode/字典树/208.实现Trie(前缀树).md)|[点击跳转](https://leetcode-cn.com/problems/implement-trie-prefix-tree/solution/208shi-xian-trieqian-zhui-shu-pythonji-l-675d/)| |170|字典树|211.添加与搜索单词|中等|[我的解题](Leetcode/字典树/211.添加与搜索单词.md)|[点击跳转](https://leetcode-cn.com/problems/design-add-and-search-words-data-structure/solution/211tian-jia-yu-sou-suo-dan-ci-zi-dian-sh-u9lb/)| |171|DP|213.打家劫舍II|中等|[我的解题](Leetcode/DP/213.打家劫舍II.md)|[点击跳转](https://leetcode-cn.com/problems/house-robber-ii/)| |172|二分|275.H指数II|中等|[我的解题](Leetcode/二分/275.H指数II.md)|[点击跳转](https://leetcode-cn.com/problems/h-index-ii/)| |173|堆|313.超级丑数|中等|[我的解题](Leetcode/堆/313.超级丑数.md)|[点击跳转](https://leetcode-cn.com/problems/super-ugly-number/solution/313chao-ji-chou-shu-dui-pai-xu-si-lu-jia-v4iv/)| |174|栈|316.去除重复字母|中等|[我的解题](Leetcode/栈/316.去除重复字母.md)|[点击跳转](https://leetcode-cn.com/problems/remove-duplicate-letters/)| |175|链表|328.奇偶链表|中等|[我的解题](Leetcode/链表/328.奇偶链表.md)|[点击跳转](https://leetcode-cn.com/problems/odd-even-linked-list/solution/328qi-ou-lian-biao-shuang-jie-dian-gun-d-an33/)| |176|数组|341.扁平化嵌套列表迭代器|中等|[我的解题](Leetcode/数组/341.扁平化嵌套列表迭代器.md)|[点击跳转](https://leetcode-cn.com/problems/flatten-nested-list-iterator/)| |177|堆|347.前K个高频元素|中等|[我的解题](Leetcode/堆/347.前K个高频元素.md)|[点击跳转](https://leetcode-cn.com/problems/top-k-frequent-elements/solution/347qian-kge-gao-pin-yuan-su-nei-zhi-han-zlfi7/)| |178|贪心|376.摆动序列|中等|[我的解题](Leetcode/贪心/376.摆动序列.md)|[点击跳转](https://leetcode-cn.com/problems/wiggle-subsequence/solution/376bai-dong-xu-lie-tan-xin-si-wei-dui-bi-9or7/)| |179|栈|394.字符串解码|中等|[我的解题](Leetcode/栈/394.字符串解码.md)|[点击跳转](https://leetcode-cn.com/problems/decode-string/solution/394zi-fu-chuan-jie-ma-pythonwu-nao-chu-r-8q3o/)| |180|数学|400.第N位数字|中等|[我的解题](Leetcode/数学/400.第N位数字.md)|[点击跳转](https://leetcode-cn.com/problems/nth-digit/)| |181|栈|402.移掉K位数字|中等|[我的解题](Leetcode/栈/402.移掉K位数字.md)|[点击跳转](https://leetcode-cn.com/problems/remove-k-digits/solution/402yi-diao-kwei-shu-zi-dan-diao-zhan-kua-5uyd/)| |182|双指针|424.替换后的最长重复字符|中等|[我的解题](Leetcode/双指针/424.替换后的最长重复字符.md)|[点击跳转](https://leetcode-cn.com/problems/longest-repeating-character-replacement/)| |183|滑窗|438.找到字符串中所有字母异位词|中等|[我的解题](Leetcode/滑窗/438.找到字符串中所有字母异位词.md)|[点击跳转](https://leetcode-cn.com/problems/find-all-anagrams-in-a-string/)| |184|字符串|451.根据字符出现频率排序|中等|[我的解题](Leetcode/字符串/451.根据字符出现频率排序.md)|[点击跳转](https://leetcode-cn.com/problems/sort-characters-by-frequency/)| |185|贪心|455.分发饼干|中等|[我的解题](Leetcode/贪心/455.分发饼干.md)|[点击跳转](https://leetcode-cn.com/problems/sort-characters-by-frequency/solution/451gen-ju-zi-fu-chu-xian-pin-lu-pai-xu-p-i9xu/)| |186|栈|456.132模式|中等|[我的解题](Leetcode/栈/456.132模式.md)|[点击跳转](https://leetcode-cn.com/problems/132-pattern/)| |187|异或|477.汉明距离总和|中等|[我的解题](Leetcode/异或/477.汉明距离总和.md)|[点击跳转](https://leetcode-cn.com/problems/total-hamming-distance/)| |188|模拟|498.对角线遍历|中等|[我的解题](Leetcode/模拟/498.对角线遍历.md)|[点击跳转](None)| |189|栈|503.下一个更大元素II|中等|[我的解题](Leetcode/栈/503.下一个更大元素II.md)|[点击跳转](https://leetcode-cn.com/problems/next-greater-element-ii/solution/503xia-yi-ge-geng-da-yuan-su-ii-fen-xi-b-yxb2/)| |190|二叉树|513.找树左下角的值|中等|[我的解题](Leetcode/二叉树/513.找树左下角的值.md)|[点击跳转](https://leetcode-cn.com/problems/find-bottom-left-tree-value/solution/513zhao-shu-zuo-xia-jiao-de-zhi-python-d-nmky/)| |191|哈希表|523.连续的子数组和|中等|[我的解题](Leetcode/哈希表/523.连续的子数组和.md)|[点击跳转](https://leetcode-cn.com/problems/continuous-subarray-sum/solution/523-lian-xu-de-zi-shu-zu-he-qian-zhui-he-zl78/)| |192|数组|524.通过删除字母匹配到字典里最长单词|中等|[我的解题](Leetcode/数组/524.通过删除字母匹配到字典里最长单词.md)|[点击跳转](https://leetcode-cn.com/problems/longest-word-in-dictionary-through-deleting/solution/524tong-guo-shan-chu-zi-mu-pi-pei-dao-zi-k1d2/)| |193|哈希表|525.连续数组|中等|[我的解题](Leetcode/哈希表/525.连续数组.md)|[点击跳转](https://leetcode-cn.com/problems/contiguous-array/solution/525lian-xu-shu-zu-qian-zhui-he-hashbiao-riqe2/)| |194|双指针|532.数组中的k-diff数对|中等|[我的解题](Leetcode/双指针/532.数组中的k-diff数对.md)|[点击跳转](None)| |195|字符串|541.反转字符串II|中等|[我的解题](Leetcode/字符串/541.反转字符串II.md)|[点击跳转](https://leetcode-cn.com/problems/reverse-string-ii/)| |196|数组|554.砖墙|中等|[我的解题](Leetcode/数组/554.砖墙.md)|[点击跳转](https://leetcode-cn.com/problems/brick-wall/)| |197|前缀和|560.和为K的子数组|中等|[我的解题](Leetcode/前缀和/560.和为K的子数组.md)|[点击跳转](https://leetcode-cn.com/problems/subarray-sum-equals-k/solution/560he-wei-kde-zi-shu-zu-xiang-xi-fen-xi-6jscu/)| |198|哈希表|567.字符串的排列|中等|[我的解题](Leetcode/哈希表/567.字符串的排列.md)|[点击跳转](https://leetcode-cn.com/problems/permutation-in-string/)| |199|双指针|581.最短无序连续子数组|中等|[我的解题](Leetcode/双指针/581.最短无序连续子数组.md)|[点击跳转](https://leetcode-cn.com/problems/shortest-unsorted-continuous-subarray/solution/581zui-duan-wu-xu-lian-xu-zi-shu-zu-pai-4dlft/)| |200|数学|592.分数加减运算|中等|[我的解题](Leetcode/数学/592.分数加减运算.md)|[点击跳转](None)| |201|数学|633.平方数之和|中等|[我的解题](Leetcode/数学/633.平方数之和.md)|[点击跳转](https://leetcode-cn.com/problems/sum-of-square-numbers/)| |202|字典树|648.单词替换|中等|[我的解题](Leetcode/字典树/648.单词替换.md)|[点击跳转](https://leetcode-cn.com/problems/replace-words/solution/648dan-ci-ti-huan-bao-li-yu-qian-zhui-sh-2ktv/)| |203|哈希表|692.前K个高频单词|中等|[我的解题](Leetcode/哈希表/692.前K个高频单词.md)|[点击跳转](https://leetcode-cn.com/problems/top-k-frequent-words/)| |204|双指针|713.乘积小于K的子数组|中等|[我的解题](Leetcode/双指针/713.乘积小于K的子数组.md)|[点击跳转](https://leetcode-cn.com/problems/subarray-product-less-than-k/solution/713cheng-ji-xiao-yu-kde-zi-shu-zu-bao-li-nfof/)| |205|栈|735.行星碰撞|中等|[我的解题](Leetcode/栈/735.行星碰撞.md)|[点击跳转](https://leetcode-cn.com/problems/asteroid-collision/solution/735xing-xing-peng-zhuang-ji-yu-zhan-qu-f-xpd1/)| |206|贪心|738.单调递增的数字|中等|[我的解题](Leetcode/贪心/738.单调递增的数字.md)|[点击跳转](https://leetcode-cn.com/problems/monotone-increasing-digits/solution/738dan-diao-di-zeng-de-shu-zi-tan-xin-de-79hn/)| |207|栈|739.每日温度|中等|[我的解题](Leetcode/栈/739.每日温度.md)|[点击跳转](https://leetcode-cn.com/problems/daily-temperatures/solution/739mei-ri-wen-du-pythondan-diao-zhan-ton-dzva/)| |208|DP|740.删除并获得点数|中等|[我的解题](Leetcode/DP/740.删除并获得点数.md)|[点击跳转](https://leetcode-cn.com/problems/3sum-closest/)| |209|双指针|870.优势洗牌|中等|[我的解题](Leetcode/双指针/870.优势洗牌.md)|[点击跳转](None)| |210|二分|875.爱吃香蕉的珂珂|中等|[我的解题](Leetcode/二分/875.爱吃香蕉的珂珂.md)|[点击跳转](https://leetcode-cn.com/problems/koko-eating-bananas/solution/875-ai-chi-xiang-jiao-de-ke-ke-er-fen-ch-7you/)| |211|哈希表|890.查找和替换模式|中等|[我的解题](Leetcode/哈希表/890.查找和替换模式.md)|[点击跳转](None)| |212|栈|901.股票价格跨度|中等|[我的解题](Leetcode/栈/901.股票价格跨度.md)|[点击跳转](https://leetcode-cn.com/problems/online-stock-span/solution/901gu-piao-jie-ge-kua-du-dan-diao-zhan-s-49zs/)| |213|滑窗|904.水果成篮|中等|[我的解题](Leetcode/滑窗/904.水果成篮.md)|[点击跳转](https://leetcode-cn.com/problems/fruit-into-baskets/solution/904shui-guo-cheng-lan-pythonhua-dong-chu-018q/)| |214|栈|946.验证栈序列|中等|[我的解题](Leetcode/栈/946.验证栈序列.md)|[点击跳转](https://leetcode-cn.com/problems/validate-stack-sequences/solution/946yan-zheng-zhan-xu-lie-zhan-zhi-zhen-d-sv8l/)| |215|模拟|950.按递增顺序显示卡牌|中等|[我的解题](Leetcode/模拟/950.按递增顺序显示卡牌.md)|[点击跳转](https://leetcode-cn.com/problems/reveal-cards-in-increasing-order/solution/950an-di-zeng-shun-xu-xian-shi-qia-pai-k-43kw/)| |216|堆|973.最接近原点的K个点|中等|[我的解题](Leetcode/堆/973.最接近原点的K个点.md)|[点击跳转](https://leetcode-cn.com/problems/k-closest-points-to-origin/solution/973zui-jie-jin-yuan-dian-de-kge-dian-pyt-4jro/)| |217|广搜|994.腐烂的橘子|中等|[我的解题](Leetcode/广搜/994.腐烂的橘子.md)|[点击跳转](https://leetcode-cn.com/problems/rotting-oranges/solution/994fu-lan-de-ju-zi-pythonbao-li-sou-suo-pkho1/)| |218|二叉树|剑指Offer34.二叉树中和为某一值的路径|中等|[我的解题](Leetcode/二叉树/剑指Offer34.二叉树中和为某一值的路径.md)|[点击跳转](https://leetcode-cn.com/problems/er-cha-shu-zhong-he-wei-mou-yi-zhi-de-lu-jing-lcof/solution/jian-zhi-offer34er-cha-shu-zhong-he-wei-zm7k8/)| |219|剑指offer|剑指OfferII004.只出现一次的数字|中等|[我的解题](Leetcode/剑指offer/剑指OfferII004.只出现一次的数字.md)|[点击跳转](https://leetcode-cn.com/problems/WGki4K/solution/shua-chuan-jian-zhi-offer-day02-zheng-sh-tlce/)| |220|剑指offer|剑指OfferII007.数组中和为0的三个数|中等|[我的解题](Leetcode/剑指offer/剑指OfferII007.数组中和为0的三个数.md)|[点击跳转](https://leetcode-cn.com/problems/1fGaJU/solution/shua-chuan-jian-zhi-offer-day05-shu-zu-i-e2af/)| |221|剑指offer|剑指OfferII008.和大于等于target的最短子数组|中等|[我的解题](Leetcode/剑指offer/剑指OfferII008.和大于等于target的最短子数组.md)|[点击跳转](https://leetcode-cn.com/problems/2VG8Kg/)| |222|剑指offer|剑指OfferII009.乘积小于K的子数组|中等|[我的解题](Leetcode/剑指offer/剑指OfferII009.乘积小于K的子数组.md)|[点击跳转](https://leetcode-cn.com/problems/ZVAVXX/solution/jian-zhi-offerii009cheng-ji-xiao-yu-kde-q158e/)| |223|剑指offer|剑指OfferII010.和为k的子数组|中等|[我的解题](Leetcode/剑指offer/剑指OfferII010.和为k的子数组.md)|[点击跳转](https://leetcode-cn.com/problems/QTMn0o/solution/shua-chuan-jian-zhi-offer-day07-shu-zu-i-jdnu/)| |224|剑指offer|剑指OfferII011.0和1个数相同的子数组|中等|[我的解题](Leetcode/剑指offer/剑指OfferII011.0和1个数相同的子数组.md)|[点击跳转](https://leetcode-cn.com/problems/A1NYOS/solution/shua-chuan-jian-zhi-offer-day07-shu-zu-i-4q9c/)| |225|剑指offer|剑指OfferII014.字符串中的变位词|中等|[我的解题](Leetcode/剑指offer/剑指OfferII014.字符串中的变位词.md)|[点击跳转](https://leetcode-cn.com/problems/MPnaiL/solution/shua-chuan-jian-zhi-offer-day08-zi-fu-ch-pasw/)| |226|剑指offer|剑指offerII015.字符串中的所有变位词|中等|[我的解题](Leetcode/剑指offer/剑指offerII015.字符串中的所有变位词.md)|[点击跳转](https://leetcode-cn.com/problems/VabMRr/)| |227|剑指offer|剑指offerII016.不含重复字符串的最长子字符串|中等|[我的解题](Leetcode/剑指offer/剑指offerII016.不含重复字符串的最长子字符串.md)|[点击跳转](https://leetcode-cn.com/problems/wtcaE1/solution/shua-chuan-jian-zhi-offer-day09-zi-fu-ch-tb4t/)| |228|剑指offer|剑指offerII021.删除链表的倒数第n个结点|中等|[我的解题](Leetcode/剑指offer/剑指offerII021.删除链表的倒数第n个结点.md)|[点击跳转](https://leetcode-cn.com/problems/SLwz0R/solution/shua-chuan-jian-zhi-offer-day11-lian-bia-tuyw/)| |229|剑指offer|剑指offerII022.链表中环的入口节点|中等|[我的解题](Leetcode/剑指offer/剑指offerII022.链表中环的入口节点.md)|[点击跳转](https://leetcode-cn.com/problems/c32eOV/solution/shua-chuan-jian-zhi-offer-day12-lian-bia-lv78/)| |230|剑指offer|剑指offerII025.链表中的两数相加|中等|[我的解题](Leetcode/剑指offer/剑指offerII025.链表中的两数相加.md)|[点击跳转](https://leetcode-cn.com/problems/lMSNwu/solution/shua-chuan-jian-zhi-offer-day13-lian-bia-cl27/)| |231|剑指offer|剑指OfferII026.重排链表|中等|[我的解题](Leetcode/剑指offer/剑指OfferII026.重排链表.md)|[点击跳转](https://leetcode-cn.com/problems/LGjMqU/solution/shua-chuan-jian-zhi-offer-day13-lian-bia-chs7/)| |232|剑指offer|剑指OfferII033.变位词组|中等|[我的解题](Leetcode/剑指offer/剑指OfferII033.变位词组.md)|[点击跳转](https://leetcode-cn.com/problems/sfvd7V/solution/shua-chuan-jian-zhi-offer-day15-ha-xi-bi-p57n/)| |233|剑指offer|剑指OfferII036.后缀表达式|中等|[我的解题](Leetcode/剑指offer/剑指OfferII036.后缀表达式.md)|[点击跳转](https://leetcode-cn.com/problems/8Zf90G/solution/shua-chuan-jian-zhi-offer-day10-zi-fu-ch-c9f1/)| |234|剑指offer|剑指OfferII037.小行星碰撞|中等|[我的解题](Leetcode/剑指offer/剑指OfferII037.小行星碰撞.md)|[点击跳转](https://leetcode-cn.com/problems/XagZNi/solution/shua-chuan-jian-zhi-offer-day17-zhan-i-0-5yho/)| |235|剑指offer|剑指offerII038.每日温度|中等|[我的解题](Leetcode/剑指offer/剑指offerII038.每日温度.md)|[点击跳转](https://leetcode-cn.com/problems/iIQa4I/solution/shua-chuan-jian-zhi-offer-day18-zhan-ii-mdv06/)| |236|剑指offer|剑指OfferII044.二叉树每层的最大值|中等|[我的解题](Leetcode/剑指offer/剑指OfferII044.二叉树每层的最大值.md)|[点击跳转](https://leetcode-cn.com/problems/hPov7L/solution/shua-chuan-jian-zhi-offer-day21-dui-lie-vo9a5/)| |237|剑指offer|剑指OfferII045.二叉树最底层最左边的值|中等|[我的解题](Leetcode/剑指offer/剑指OfferII045.二叉树最底层最左边的值.md)|[点击跳转](https://leetcode-cn.com/problems/LwUNpT/solution/shua-chuan-jian-zhi-offer-day21-dui-lie-do26g/)| |238|剑指offer|剑指OfferII046.二叉树的右侧视图|中等|[我的解题](Leetcode/剑指offer/剑指OfferII046.二叉树的右侧视图.md)|[点击跳转](https://leetcode-cn.com/problems/WNC0Lk/solution/shua-chuan-jian-zhi-offer-day21-dui-lie-n360i/)| |239|剑指offer|剑指OfferII047.二叉树剪枝|中等|[我的解题](Leetcode/剑指offer/剑指OfferII047.二叉树剪枝.md)|[点击跳转](https://leetcode-cn.com/problems/pOCWxh/solution/jian-zhi-offerii047er-cha-shu-jian-zhi-p-6u4g/)| |240|剑指offer|剑指OfferII048.序列化与反序列化二叉树|中等|[我的解题](Leetcode/剑指offer/剑指OfferII048.序列化与反序列化二叉树.md)|[点击跳转](https://leetcode-cn.com/problems/h54YBf/solution/jian-zhi-offerii048xu-lie-hua-yu-fan-xu-i5xul/)| |241|双指针|面试题17.11.单词距离|中等|[我的解题](Leetcode/双指针/面试题17.11.单词距离.md)|[点击跳转](None)| |242|哈希表|剑指Offer53-I.在排序数组中查找数字I|中等|[我的解题](Leetcode/哈希表/剑指Offer53-I.在排序数组中查找数字I.md)|[点击跳转](https://leetcode-cn.com/problems/zai-pai-xu-shu-zu-zhong-cha-zhao-shu-zi-lcof/)| |243|堆|LCP30.魔塔游戏|中等|[我的解题](Leetcode/堆/LCP30.魔塔游戏.md)|[点击跳转](https://leetcode-cn.com/problems/p0NxJO/solution/lcp-30-mo-ta-you-xi-biao-zhun-de-xiao-ge-4gkk/)| |244|堆|面试题17.14.最小K个数|中等|[我的解题](Leetcode/堆/面试题17.14.最小K个数.md)|[点击跳转](https://leetcode-cn.com/problems/smallest-k-lcci/solution/mian-shi-ti-1714zui-xiao-kge-shu-ji-chu-k9jd8/)| |245|数学|剑指Offer44.数字序列中某一位的数字|中等|[我的解题](Leetcode/数学/剑指Offer44.数字序列中某一位的数字.md)|[点击跳转](https://leetcode-cn.com/problems/integer-to-roman/)| |246|栈|剑指Offer31.栈的压入、弹出序列|中等|[我的解题](Leetcode/栈/剑指Offer31.栈的压入、弹出序列.md)|[点击跳转](https://leetcode-cn.com/problems/zhan-de-ya-ru-dan-chu-xu-lie-lcof/solution/jian-zhi-offer31zhan-de-ya-ru-dan-chu-xu-342y/)| |247|深搜|剑指Offer38.字符串的排列|中等|[我的解题](Leetcode/深搜/剑指Offer38.字符串的排列.md)|[点击跳转](https://leetcode-cn.com/problems/zi-fu-chuan-de-pai-lie-lcof/comments/)| |248|链表|剑指Offer52.两个链表的第一个公共节点|中等|[我的解题](Leetcode/链表/剑指Offer52.两个链表的第一个公共节点.md)|[点击跳转](https://leetcode-cn.com/problems/liang-ge-lian-biao-de-di-yi-ge-gong-gong-jie-dian-lcof/solution/jian-zhi-offer52liang-ge-lian-biao-de-di-yj5l/)| |249|数学|1006.笨阶乘|中等|[我的解题](Leetcode/数学/1006.笨阶乘.md)|[点击跳转](https://leetcode-cn.com/problems/clumsy-factorial/)| |250|二分|1011.在D天内送达包裹的能力|中等|[我的解题](Leetcode/二分/1011.在D天内送达包裹的能力.md)|[点击跳转](https://leetcode-cn.com/problems/capacity-to-ship-packages-within-d-days/)| |251|贪心|1029.两地调度|中等|[我的解题](Leetcode/贪心/1029.两地调度.md)|[点击跳转](https://leetcode-cn.com/problems/two-city-scheduling/solution/1029liang-di-diao-du-pythonyi-xing-dai-m-b840/)| |252|前缀和|1109.航班预订系统|中等|[我的解题](Leetcode/前缀和/1109.航班预订系统.md)|[点击跳转](https://leetcode-cn.com/problems/corporate-flight-bookings/solution/1109hang-ban-yu-ding-xi-tong-ha-xi-biao-52opn/)| |253|栈|1190.反转每对括号间的子串|中等|[我的解题](Leetcode/栈/1190.反转每对括号间的子串.md)|[点击跳转](https://leetcode-cn.com/problems/reverse-substrings-between-each-pair-of-parentheses/)| |254|深搜|1239.串联字符串的最大长度|中等|[我的解题](Leetcode/深搜/1239.串联字符串的最大长度.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-length-of-a-concatenated-string-with-unique-characters/solution/1239chuan-lian-zi-fu-chuan-de-zui-da-cha-7weh/)| |255|栈|1249.移除无效的括号|中等|[我的解题](Leetcode/栈/1249.移除无效的括号.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-remove-to-make-valid-parentheses/)| |256|异或|1310.子数组异或查询|中等|[我的解题](Leetcode/异或/1310.子数组异或查询.md)|[点击跳转](https://leetcode-cn.com/problems/xor-queries-of-a-subarray/)| |257|栈|1381.设计一个支持增量操作的栈|中等|[我的解题](Leetcode/栈/1381.设计一个支持增量操作的栈.md)|[点击跳转](https://leetcode-cn.com/problems/design-a-stack-with-increment-operation/solution/1381she-ji-yi-ge-zhi-chi-zeng-liang-cao-3vbhb/)| |258|设计|1418.点菜展示表|中等|[我的解题](Leetcode/设计/1418.点菜展示表.md)|[点击跳转](https://leetcode-cn.com/problems/display-table-of-food-orders-in-a-restaurant/solution/1418dian-cai-zhan-shi-biao-shou-ba-shou-4b72f/)| |259|异或|1442.形成两个异或相等数组的三元组数目|中等|[我的解题](Leetcode/异或/1442.形成两个异或相等数组的三元组数目.md)|[点击跳转](https://leetcode-cn.com/problems/count-triplets-that-can-form-two-arrays-of-equal-xor/)| |260|贪心|1605.给定行和列的和求可行矩阵|中等|[我的解题](Leetcode/贪心/1605.给定行和列的和求可行矩阵.md)|[点击跳转](https://leetcode-cn.com/problems/find-valid-matrix-given-row-and-column-sums/solution/1605gei-ding-xing-he-lie-de-he-qiu-ke-xi-vcwz/)| |261|堆|1642.可以到达的最远建筑|中等|[我的解题](Leetcode/堆/1642.可以到达的最远建筑.md)|[点击跳转](https://leetcode-cn.com/problems/furthest-building-you-can-reach/solution/1642ke-yi-dao-da-de-zui-yuan-jian-zhu-sh-l6fm/)| |262|数组|1806.还原排列的最少操作步数|中等|[我的解题](Leetcode/数组/1806.还原排列的最少操作步数.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-number-of-operations-to-reinitialize-a-permutation/)| |263|栈|1807.替换字符串中的括号内容|中等|[我的解题](Leetcode/栈/1807.替换字符串中的括号内容.md)|[点击跳转](https://leetcode-cn.com/problems/evaluate-the-bracket-pairs-of-a-string/solution/5714-ti-huan-zi-fu-chuan-zhong-de-gua-ha-hq6j/)| |264|双指针|1813.句子相似性III|中等|[我的解题](Leetcode/双指针/1813.句子相似性III.md)|[点击跳转](https://leetcode-cn.com/problems/sentence-similarity-iii/solution/5706-ju-zi-xiang-si-xing-iii-shuang-bai-a7jlh/)| |265|数学|1828.统计一个圆中点的数目|中等|[我的解题](Leetcode/数学/1828.统计一个圆中点的数目.md)|[点击跳转](https://leetcode-cn.com/problems/queries-on-number-of-points-inside-a-circle/)| |266|数组|1833.雪糕的最大数量|中等|[我的解题](Leetcode/数组/1833.雪糕的最大数量.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-ice-cream-bars/solution/5735xue-gao-de-zui-da-shu-liang-zhe-chon-kt3f/)| |267|滑窗|1838.最高频元素的频数|中等|[我的解题](Leetcode/滑窗/1838.最高频元素的频数.md)|[点击跳转](https://leetcode-cn.com/problems/frequency-of-the-most-frequent-element/solution/1838zui-gao-pin-yuan-su-de-pin-shu-hua-d-zuk1/)| |268|堆|1845.座位预约管理系统|中等|[我的解题](Leetcode/堆/1845.座位预约管理系统.md)|[点击跳转](https://leetcode-cn.com/problems/seat-reservation-manager/solution/5731zuo-wei-yu-yue-guan-li-xi-tong-jian-tlmzu/)| |269|数组|1846.减小和重新排列数组后的最大元素|中等|[我的解题](Leetcode/数组/1846.减小和重新排列数组后的最大元素.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-element-after-decreasing-and-rearranging/solution/5732jian-xiao-he-zhong-xin-pai-lie-shu-z-gsl8/)| |270|双指针|1855.下标对中的最大距离|中等|[我的解题](Leetcode/双指针/1855.下标对中的最大距离.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-distance-between-a-pair-of-values/)| |271|二分|1870.准时到达的列车最小时速|中等|[我的解题](Leetcode/二分/1870.准时到达的列车最小时速.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-speed-to-arrive-on-time/)| |272|数学|1877.数组中最大数对和的最小值|中等|[我的解题](Leetcode/数学/1877.数组中最大数对和的最小值.md)|[点击跳转](https://leetcode-cn.com/problems/minimize-maximum-pair-sum-in-array/solution/1877shu-zu-zhong-zui-da-shu-dui-he-de-zu-a59r/)| |273|数学|1881.插入后的最大值|中等|[我的解题](Leetcode/数学/1881.插入后的最大值.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-value-after-insertion/solution/1881cha-ru-hou-de-zui-da-zhi-he-bing-kao-g8ku/)| |274|数组|1894.找到需要补充粉笔的学生编号|中等|[我的解题](Leetcode/数组/1894.找到需要补充粉笔的学生编号.md)|[点击跳转](https://leetcode-cn.com/problems/find-the-student-that-will-replace-the-chalk/)| |275|贪心|1921.消灭怪物的最大数量|中等|[我的解题](Leetcode/贪心/1921.消灭怪物的最大数量.md)|[点击跳转](https://leetcode-cn.com/problems/eliminate-maximum-number-of-monsters/solution/5801xiao-mie-guai-wu-de-zui-da-shu-liang-2r9m/)| |276|广搜|1926.迷宫中离入口最近的出口|中等|[我的解题](Leetcode/广搜/1926.迷宫中离入口最近的出口.md)|[点击跳转](None)| |277|贪心|1936.新增的最少台阶数|中等|[我的解题](Leetcode/贪心/1936.新增的最少台阶数.md)|[点击跳转](https://leetcode-cn.com/problems/add-minimum-number-of-rungs/solution/xin-zeng-de-zui-shao-tai-jie-shu-tan-xin-nzw2/)| |278|设计|5694.设计一个验证系统|中等|[我的解题](Leetcode/设计/5694.设计一个验证系统.md)|[点击跳转](https://leetcode-cn.com/problems/design-authentication-manager/solution/5694she-ji-yi-ge-yan-zheng-xi-tong-by-qi-bsy3/)| |279|哈希表|5708.统计一个数组中好对子的数目|中等|[我的解题](Leetcode/哈希表/5708.统计一个数组中好对子的数目.md)|[点击跳转](https://leetcode-cn.com/problems/count-nice-pairs-in-an-array/)| |280|数组|5712.你能构造出连续值的最大数目|中等|[我的解题](Leetcode/数组/5712.你能构造出连续值的最大数目.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-number-of-consecutive-values-you-can-make/solution/5712ni-neng-gou-zao-chu-lian-xu-zhi-de-z-1zk4/)| |281|异或|5719.每个查询的最大异或值|中等|[我的解题](Leetcode/异或/5719.每个查询的最大异或值.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-xor-for-each-query/)| |282|哈希表|5723.查找用户活跃分钟数|中等|[我的解题](Leetcode/哈希表/5723.查找用户活跃分钟数.md)|[点击跳转](https://leetcode-cn.com/problems/finding-the-users-active-minutes/)| |283|DP|5727.找出游戏的获胜者|中等|[我的解题](Leetcode/DP/5727.找出游戏的获胜者.md)|[点击跳转](https://leetcode-cn.com/problems/find-the-winner-of-the-circular-game/)| |284|数组|5728.最少侧跳次数|中等|[我的解题](Leetcode/数组/5728.最少侧跳次数.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-sideway-jumps/)| |285|深搜|5747.将字符串拆分为递减的连续值|中等|[我的解题](Leetcode/深搜/5747.将字符串拆分为递减的连续值.md)|[点击跳转](https://leetcode-cn.com/problems/splitting-a-string-into-descending-consecutive-values/)| |286|栈|5781.删除一个字符串中所有出现的给定子字符串|中等|[我的解题](Leetcode/栈/5781.删除一个字符串中所有出现的给定子字符串.md)|[点击跳转](https://leetcode-cn.com/problems/remove-all-occurrences-of-a-substring/solution/5781shan-chu-yi-ge-zi-fu-chuan-zhong-suo-agj2/)| |287|数学|5802.统计好数字的数目|中等|[我的解题](Leetcode/数学/5802.统计好数字的数目.md)|[点击跳转](https://leetcode-cn.com/problems/count-good-numbers/solution/5802tong-ji-hao-shu-zi-de-shu-mu-pythonk-0gi2/)| |288|堆|5839.移除石子使总数最小|中等|[我的解题](Leetcode/堆/5839.移除石子使总数最小.md)|[点击跳转](https://leetcode-cn.com/problems/remove-stones-to-minimize-the-total/)| |289|数学|5840.使字符串平衡的最小交换次数|中等|[我的解题](Leetcode/数学/5840.使字符串平衡的最小交换次数.md)|[点击跳转](https://leetcode-cn.com/problems/minimum-number-of-swaps-to-make-the-string-balanced/solution/5840shi-zi-fu-chuan-ping-heng-de-zui-xia-7mg5/)| |290|滑窗|5873.考试的最大困扰度|中等|[我的解题](Leetcode/滑窗/5873.考试的最大困扰度.md)|[点击跳转](https://leetcode-cn.com/contest/biweekly-contest-62/problems/maximize-the-confusion-of-an-exam/)| |291|栈|32.最长有效括号|困难|[我的解题](Leetcode/栈/32.最长有效括号.md)|[点击跳转](https://leetcode-cn.com/problems/longest-valid-parentheses/solution/32zui-chang-you-xiao-gua-hao-python-bao-tgw1x/)| |292|栈|42.接雨水|困难|[我的解题](Leetcode/栈/42.接雨水.md)|[点击跳转](https://leetcode-cn.com/problems/trapping-rain-water/solution/42jie-yu-shui-dan-diao-zhan-jing-dian-bi-i3pe/)| |293|队列|239.滑动窗口最大值|困难|[我的解题](Leetcode/队列/239.滑动窗口最大值.md)|[点击跳转](https://leetcode-cn.com/problems/sliding-window-maximum/solution/239hua-dong-chuang-kou-zui-da-zhi-bao-li-z4q2/)| |294|栈|面试题17.21.直方图的水量|困难|[我的解题](Leetcode/栈/面试题17.21.直方图的水量.md)|[点击跳转](https://leetcode-cn.com/problems/volume-of-histogram-lcci/solution/mian-shi-ti-1721-zhi-fang-tu-de-shui-lia-3j6z/)| |295|前缀和|5874.分割数组的最多方案数|困难|[我的解题](Leetcode/前缀和/5874.分割数组的最多方案数.md)|[点击跳转](https://leetcode-cn.com/problems/maximum-number-of-ways-to-partition-an-array/solution/pythonqian-zhui-he-jia-shuang-ha-xi-biao-34uc/)| |296|双指针|6143.预算内的最多机器人数目|困难|[我的解题](Leetcode/双指针/6143.预算内的最多机器人数目.md)|[点击跳转](None)|