Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f0ca39c

Browse files
feat: update lc problems (doocs#4259)
1 parent 783f39b commit f0ca39c

File tree

29 files changed

+489
-22
lines changed

29 files changed

+489
-22
lines changed

‎solution/3400-3499/3481.Apply Substitutions/README.md‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
comments: true
33
difficulty: 中等
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3481.Apply%20Substitutions/README.md
5+
tags:
6+
- 深度优先搜索
7+
- 广度优先搜索
8+
-
9+
- 拓扑排序
10+
- 数组
11+
- 哈希表
12+
- 字符串
513
---
614

715
<!-- problem:start -->

‎solution/3400-3499/3481.Apply Substitutions/README_EN.md‎

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
comments: true
33
difficulty: Medium
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3481.Apply%20Substitutions/README_EN.md
5+
tags:
6+
- Depth-First Search
7+
- Breadth-First Search
8+
- Graph
9+
- Topological Sort
10+
- Array
11+
- Hash Table
12+
- String
513
---
614

715
<!-- problem:start -->

‎solution/3400-3499/3483.Unique 3-Digit Even Numbers/README.md‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
comments: true
33
difficulty: 简单
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3483.Unique%203-Digit%20Even%20Numbers/README.md
5+
tags:
6+
- 递归
7+
- 数组
8+
- 哈希表
9+
- 枚举
510
---
611

712
<!-- problem:start -->

‎solution/3400-3499/3483.Unique 3-Digit Even Numbers/README_EN.md‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
comments: true
33
difficulty: Easy
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3483.Unique%203-Digit%20Even%20Numbers/README_EN.md
5+
tags:
6+
- Recursion
7+
- Array
8+
- Hash Table
9+
- Enumeration
510
---
611

712
<!-- problem:start -->

‎solution/3400-3499/3484.Design Spreadsheet/README.md‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
comments: true
33
difficulty: 中等
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3484.Design%20Spreadsheet/README.md
5+
tags:
6+
- 设计
7+
- 数组
8+
- 哈希表
9+
- 字符串
10+
- 矩阵
511
---
612

713
<!-- problem:start -->

‎solution/3400-3499/3484.Design Spreadsheet/README_EN.md‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
comments: true
33
difficulty: Medium
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3484.Design%20Spreadsheet/README_EN.md
5+
tags:
6+
- Design
7+
- Array
8+
- Hash Table
9+
- String
10+
- Matrix
511
---
612

713
<!-- problem:start -->

‎solution/3400-3499/3485.Longest Common Prefix of K Strings After Removal/README.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
comments: true
33
difficulty: 困难
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3485.Longest%20Common%20Prefix%20of%20K%20Strings%20After%20Removal/README.md
5+
tags:
6+
- 字典树
7+
- 数组
8+
- 字符串
59
---
610

711
<!-- problem:start -->

‎solution/3400-3499/3485.Longest Common Prefix of K Strings After Removal/README_EN.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
comments: true
33
difficulty: Hard
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3485.Longest%20Common%20Prefix%20of%20K%20Strings%20After%20Removal/README_EN.md
5+
tags:
6+
- Trie
7+
- Array
8+
- String
59
---
610

711
<!-- problem:start -->

‎solution/3400-3499/3486.Longest Special Path II/README.md‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
comments: true
33
difficulty: 困难
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3486.Longest%20Special%20Path%20II/README.md
5+
tags:
6+
-
7+
- 深度优先搜索
8+
- 数组
9+
- 哈希表
10+
- 前缀和
511
---
612

713
<!-- problem:start -->

‎solution/3400-3499/3486.Longest Special Path II/README_EN.md‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
comments: true
33
difficulty: Hard
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3400-3499/3486.Longest%20Special%20Path%20II/README_EN.md
5+
tags:
6+
- Tree
7+
- Depth-First Search
8+
- Array
9+
- Hash Table
10+
- Prefix Sum
511
---
612

713
<!-- problem:start -->

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /