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 2038cfd

Browse files
feat: update lc problems (doocs#3851)
1 parent 2f350d9 commit 2038cfd

File tree

24 files changed

+191
-84
lines changed

24 files changed

+191
-84
lines changed

‎solution/3300-3399/3375.Minimum Operations to Make Array Values Equal to K/README.md‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
comments: true
33
difficulty: 简单
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3300-3399/3375.Minimum%20Operations%20to%20Make%20Array%20Values%20Equal%20to%20K/README.md
5+
tags:
6+
- 数组
7+
- 哈希表
58
---
69

710
<!-- problem:start -->

‎solution/3300-3399/3375.Minimum Operations to Make Array Values Equal to K/README_EN.md‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
comments: true
33
difficulty: Easy
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3300-3399/3375.Minimum%20Operations%20to%20Make%20Array%20Values%20Equal%20to%20K/README_EN.md
5+
tags:
6+
- Array
7+
- Hash Table
58
---
69

710
<!-- problem:start -->

‎solution/3300-3399/3376.Minimum Time to Break Locks I/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/3300-3399/3376.Minimum%20Time%20to%20Break%20Locks%20I/README.md
5+
tags:
6+
- 位运算
7+
- 数组
8+
- 动态规划
9+
- 回溯
10+
- 状态压缩
511
---
612

713
<!-- problem:start -->

‎solution/3300-3399/3376.Minimum Time to Break Locks I/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/3300-3399/3376.Minimum%20Time%20to%20Break%20Locks%20I/README_EN.md
5+
tags:
6+
- Bit Manipulation
7+
- Array
8+
- Dynamic Programming
9+
- Backtracking
10+
- Bitmask
511
---
612

713
<!-- problem:start -->

‎solution/3300-3399/3377.Digit Operations to Make Two Integers Equal/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/3300-3399/3377.Digit%20Operations%20to%20Make%20Two%20Integers%20Equal/README.md
5+
tags:
6+
-
7+
- 数学
8+
- 数论
9+
- 最短路
10+
- 堆(优先队列)
511
---
612

713
<!-- problem:start -->

‎solution/3300-3399/3377.Digit Operations to Make Two Integers Equal/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/3300-3399/3377.Digit%20Operations%20to%20Make%20Two%20Integers%20Equal/README_EN.md
5+
tags:
6+
- Graph
7+
- Math
8+
- Number Theory
9+
- Shortest Path
10+
- Heap (Priority Queue)
511
---
612

713
<!-- problem:start -->

‎solution/3300-3399/3378.Count Connected Components in LCM Graph/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/3300-3399/3378.Count%20Connected%20Components%20in%20LCM%20Graph/README.md
5+
tags:
6+
- 并查集
7+
- 数组
8+
- 哈希表
9+
- 数学
10+
- 数论
511
---
612

713
<!-- problem:start -->

‎solution/3300-3399/3378.Count Connected Components in LCM Graph/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/3300-3399/3378.Count%20Connected%20Components%20in%20LCM%20Graph/README_EN.md
5+
tags:
6+
- Union Find
7+
- Array
8+
- Hash Table
9+
- Math
10+
- Number Theory
511
---
612

713
<!-- problem:start -->

‎solution/3300-3399/3379.Transformed Array/README.md‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
comments: true
33
difficulty: 简单
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3300-3399/3379.Transformed%20Array/README.md
5+
tags:
6+
- 数组
7+
- 模拟
58
---
69

710
<!-- problem:start -->

‎solution/3300-3399/3379.Transformed Array/README_EN.md‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
comments: true
33
difficulty: Easy
44
edit_url: https://github.com/doocs/leetcode/edit/main/solution/3300-3399/3379.Transformed%20Array/README_EN.md
5+
tags:
6+
- Array
7+
- Simulation
58
---
69

710
<!-- problem:start -->

0 commit comments

Comments
(0)

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