Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update lc problems #4022

Merged
merged 1 commit into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions solution/0000-0099/0047.Permutations II/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/0000-0099/0047.Pe
tags:
- 数组
- 回溯
- 排序
---

<!-- problem:start -->
Expand Down
1 change: 1 addition & 0 deletions solution/0000-0099/0047.Permutations II/README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/0000-0099/0047.Pe
tags:
- Array
- Backtracking
- Sorting
---

<!-- problem:start -->
Expand Down
2 changes: 2 additions & 0 deletions solution/0600-0699/0691.Stickers to Spell Word/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ difficulty: 困难
edit_url: https://github.com/doocs/leetcode/edit/main/solution/0600-0699/0691.Stickers%20to%20Spell%20Word/README.md
tags:
- 位运算
- 记忆化搜索
- 数组
- 哈希表
- 字符串
- 动态规划
- 回溯
Expand Down
2 changes: 2 additions & 0 deletions solution/0600-0699/0691.Stickers to Spell Word/README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ difficulty: Hard
edit_url: https://github.com/doocs/leetcode/edit/main/solution/0600-0699/0691.Stickers%20to%20Spell%20Word/README_EN.md
tags:
- Bit Manipulation
- Memoization
- Array
- Hash Table
- String
- Dynamic Programming
- Backtracking
Expand Down
41 changes: 24 additions & 17 deletions solution/0900-0999/0906.Super Palindromes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,33 +18,40 @@ tags:

<!-- description:start -->

<p>如果一个正整数自身是回文数,而且它也是一个回文数的平方,那么我们称这个数为超级回文数。</p>
<p>如果一个正整数自身是回文数,而且它也是一个回文数的平方,那么我们称这个数为 <strong>超级回文数</strong> 。</p>

<p>现在,给定两个正整数&nbsp;<code>L</code> 和&nbsp;<code>R</code> (以字符串形式表示),返回包含在范围 <code>[L, R]</code> 中的超级回文数的数目。</p>
<p>现在,给你两个以字符串形式表示的正整数 <font color="#c7254e" face="Menlo, Monaco, Consolas, Courier New, monospace"><span style="caret-color: rgb(199, 37, 78); font-size: 12.6px; background-color: rgb(249, 242, 244);">left</span></font>&nbsp;和 <font color="#c7254e" face="Menlo, Monaco, Consolas, Courier New, monospace"><span style="caret-color: rgb(199, 37, 78); font-size: 12.6px; background-color: rgb(249, 242, 244);">right</span></font>&nbsp; ,统计并返回区间&nbsp;<code>[left, right]</code> 中的 <strong>超级回文数</strong> 的数目。</p>

<p>&nbsp;</p>

<p><strong>示例:</strong></p>
<p><b>示例 1:</b></p>

<pre><strong>输入:</strong>L = &quot;4&quot;, R = &quot;1000&quot;
<strong>输出:</strong>4
<strong>解释:
</strong>4,9,121,以及 484 是超级回文数。
注意 676 不是一个超级回文数: 26 * 26 = 676,但是 26 不是回文数。</pre>
<pre>
<b>输入:</b>left = "4", right = "1000"
<b>输出:</b>4
<b>解释:</b>4、9、121 和 484 都是超级回文数。
注意 676 不是超级回文数:26 * 26 = 676 ,但是 26 不是回文数。
</pre>

<p>&nbsp;</p>

<p><strong>提示:</strong></p>
<p><b>示例 2:</b></p>

<ol>
<li><code>1 &lt;= len(L) &lt;= 18</code></li>
<li><code>1 &lt;= len(R) &lt;= 18</code></li>
<li><code>L</code> 和&nbsp;<code>R</code>&nbsp;是表示&nbsp;<code>[1, 10^18)</code>&nbsp;范围的整数的字符串。</li>
<li><code>int(L) &lt;= int(R)</code></li>
</ol>
<pre>
<b>输入:</b>left = "1", right = "2"
<b>输出:</b>1
</pre>

<p>&nbsp;</p>

<p><b>提示:</b></p>

<ul>
<li><code>1 &lt;= left.length, right.length &lt;= 18</code></li>
<li><code>left</code>&nbsp;和&nbsp;<code>right</code>&nbsp;仅由数字(0 - 9)组成。</li>
<li><code>left</code>&nbsp;和&nbsp;<code>right</code>&nbsp;不含前导零。</li>
<li><code>left</code>&nbsp;和&nbsp;<code>right</code>&nbsp;表示的整数在区间&nbsp;<code>[1, 10<sup>18</sup> - 1]</code> 内。</li>
<li><code>left</code>&nbsp;小于等于&nbsp;<code>right</code>&nbsp;。</li>
</ul>

<!-- description:end -->

## 解法
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tags:
<strong>Input:</strong> nums = [3,4,5,1,2]
<strong>Output:</strong> true
<strong>Explanation:</strong> [1,2,3,4,5] is the original sorted array.
You can rotate the array by x = 3 positions to begin on the the element of value 3: [3,4,5,1,2].
You can rotate the array by x = 3 positions to begin on the element of value 3: [3,4,5,1,2].
</pre>

<p><strong class="example">Example 2:</strong></p>
Expand All @@ -51,6 +51,24 @@ You can rotate the array by x = 3 positions to begin on the the element of value
You can rotate the array by x = 0 positions (i.e. no rotation) to make nums.
</pre>

<div class="simple-translate-system-theme" id="simple-translate">
<div>
<div class="simple-translate-button " style="background-image: url(&quot;moz-extension://8a9ffb6b-7e69-4e93-aae1-436a1448eff6/icons/512.png&quot;); height: 22px; width: 22px; top: 10px; left: 10px;">&nbsp;</div>

<div class="simple-translate-panel " style="width: 300px; height: 200px; top: 0px; left: 0px; font-size: 13px;">
<div class="simple-translate-result-wrapper" style="overflow: hidden;">
<div class="simple-translate-move" draggable="true">&nbsp;</div>

<div class="simple-translate-result-contents">
<p class="simple-translate-result" dir="auto">&nbsp;</p>

<p class="simple-translate-candidate" dir="auto">&nbsp;</p>
</div>
</div>
</div>
</div>
</div>

<p>&nbsp;</p>
<p><strong>Constraints:</strong></p>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tags:

<!-- problem:start -->

# [1911. 最大子序列交替和](https://leetcode.cn/problems/maximum-alternating-subsequence-sum)
# [1911. 最大交替子序列和](https://leetcode.cn/problems/maximum-alternating-subsequence-sum)

[English Version](/solution/1900-1999/1911.Maximum%20Alternating%20Subsequence%20Sum/README_EN.md)

Expand Down
1 change: 1 addition & 0 deletions solution/2300-2399/2360.Longest Cycle in a Graph/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ rating: 1897
source: 第 304 场周赛 Q4
tags:
- 深度优先搜索
- 广度优先搜索
- 图
- 拓扑排序
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ rating: 1897
source: Weekly Contest 304 Q4
tags:
- Depth-First Search
- Breadth-First Search
- Graph
- Topological Sort
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/2400-2499/2493.Di
rating: 2415
source: 第 322 场周赛 Q4
tags:
- 深度优先搜索
- 广度优先搜索
- 并查集
- 图
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/2400-2499/2493.Di
rating: 2415
source: Weekly Contest 322 Q4
tags:
- Depth-First Search
- Breadth-First Search
- Union Find
- Graph
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/2600-2699/2607.Ma
rating: 2071
source: 第 101 场双周赛 Q3
tags:
- 贪心
- 数组
- 数学
- 数论
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edit_url: https://github.com/doocs/leetcode/edit/main/solution/2600-2699/2607.Ma
rating: 2071
source: Biweekly Contest 101 Q3
tags:
- Greedy
- Array
- Math
- Number Theory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 简单
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3402.Minimum%20Operations%20to%20Make%20Columns%20Strictly%20Increasing/README.md
rating: 1245
source: 第 430 场周赛 Q1
tags:
- 贪心
- 数组
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Easy
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3402.Minimum%20Operations%20to%20Make%20Columns%20Strictly%20Increasing/README_EN.md
rating: 1245
source: Weekly Contest 430 Q1
tags:
- Greedy
- Array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 中等
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3403.Find%20the%20Lexicographically%20Largest%20String%20From%20the%20Box%20I/README.md
rating: 1761
source: 第 430 场周赛 Q2
tags:
- 双指针
- 字符串
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Medium
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3403.Find%20the%20Lexicographically%20Largest%20String%20From%20the%20Box%20I/README_EN.md
rating: 1761
source: Weekly Contest 430 Q2
tags:
- Two Pointers
- String
Expand Down
2 changes: 2 additions & 0 deletions solution/3400-3499/3404.Count Special Subsequences/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 中等
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3404.Count%20Special%20Subsequences/README.md
rating: 2445
source: 第 430 场周赛 Q3
tags:
- 数组
- 哈希表
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Medium
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3404.Count%20Special%20Subsequences/README_EN.md
rating: 2445
source: Weekly Contest 430 Q3
tags:
- Array
- Hash Table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 困难
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3405.Count%20the%20Number%20of%20Arrays%20with%20K%20Matching%20Adjacent%20Elements/README.md
rating: 2309
source: 第 430 场周赛 Q4
tags:
- 数学
- 组合数学
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Hard
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3405.Count%20the%20Number%20of%20Arrays%20with%20K%20Matching%20Adjacent%20Elements/README_EN.md
rating: 2309
source: Weekly Contest 430 Q4
tags:
- Math
- Combinatorics
Expand Down
2 changes: 2 additions & 0 deletions solution/3400-3499/3407.Substring Matching Pattern/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 简单
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3407.Substring%20Matching%20Pattern/README.md
rating: 1472
source: 第 147 场双周赛 Q1
tags:
- 字符串
- 字符串匹配
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Easy
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3407.Substring%20Matching%20Pattern/README_EN.md
rating: 1472
source: Biweekly Contest 147 Q1
tags:
- String
- String Matching
Expand Down
2 changes: 2 additions & 0 deletions solution/3400-3499/3408.Design Task Manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 中等
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3408.Design%20Task%20Manager/README.md
rating: 1806
source: 第 147 场双周赛 Q2
tags:
- 设计
- 哈希表
Expand Down
2 changes: 2 additions & 0 deletions solution/3400-3499/3408.Design Task Manager/README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Medium
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3408.Design%20Task%20Manager/README_EN.md
rating: 1806
source: Biweekly Contest 147 Q2
tags:
- Design
- Hash Table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 中等
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3409.Longest%20Subsequence%20With%20Decreasing%20Adjacent%20Difference/README.md
rating: 2500
source: 第 147 场双周赛 Q3
tags:
- 数组
- 动态规划
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Medium
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3409.Longest%20Subsequence%20With%20Decreasing%20Adjacent%20Difference/README_EN.md
rating: 2500
source: Biweekly Contest 147 Q3
tags:
- Array
- Dynamic Programming
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 困难
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3410.Maximize%20Subarray%20Sum%20After%20Removing%20All%20Occurrences%20of%20One%20Element/README.md
rating: 2843
source: 第 147 场双周赛 Q4
tags:
- 线段树
- 数组
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Hard
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3410.Maximize%20Subarray%20Sum%20After%20Removing%20All%20Occurrences%20of%20One%20Element/README_EN.md
rating: 2843
source: Biweekly Contest 147 Q4
tags:
- Segment Tree
- Array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 简单
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3411.Maximum%20Subarray%20With%20Equal%20Products/README.md
rating: 1443
source: 第 431 场周赛 Q1
tags:
- 数组
- 数学
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Easy
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3411.Maximum%20Subarray%20With%20Equal%20Products/README_EN.md
rating: 1443
source: Weekly Contest 431 Q1
tags:
- Array
- Math
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 中等
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3412.Find%20Mirror%20Score%20of%20a%20String/README.md
rating: 1578
source: 第 431 场周赛 Q2
tags:
- 栈
- 哈希表
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Medium
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3412.Find%20Mirror%20Score%20of%20a%20String/README_EN.md
rating: 1578
source: Weekly Contest 431 Q2
tags:
- Stack
- Hash Table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 中等
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3413.Maximum%20Coins%20From%20K%20Consecutive%20Bags/README.md
rating: 2373
source: 第 431 场周赛 Q3
tags:
- 贪心
- 数组
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: Medium
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3413.Maximum%20Coins%20From%20K%20Consecutive%20Bags/README_EN.md
rating: 2373
source: Weekly Contest 431 Q3
tags:
- Greedy
- Array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
comments: true
difficulty: 困难
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3414.Maximum%20Score%20of%20Non-overlapping%20Intervals/README.md
rating: 2723
source: 第 431 场周赛 Q4
tags:
- 数组
- 二分查找
Expand Down
Loading
Loading