Skip to content

Commit 8d02630

Browse files
committed
docs: update related problems
1 parent 9966d60 commit 8d02630

File tree

7 files changed

+56
-7
lines changed
  • solution
    • 0200-0299/0233.Number of Digit One
    • 0300-0399/0357.Count Numbers with Unique Digits
    • 0600-0699/0600.Non-negative Integers without Consecutive Ones
    • 0700-0799/0788.Rotated Digits
    • 0900-0999/0902.Numbers At Most N Given Digit Set
    • 1000-1099/1012.Numbers With Repeated Digits
    • 2300-2399/2376.Count Special Integers

7 files changed

+56
-7
lines changed

solution/0200-0299/0233.Number of Digit One/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,14 @@ $$
6565

6666
时间复杂度 $O(\log n)$。
6767

68-
相似题目:[788. 旋转数字](/solution/0700-0799/0788.Rotated%20Digits/README.md)
68+
相似题目:
69+
70+
- [357. 统计各位数字都不同的数字个数](/solution/0300-0399/0357.Count%20Numbers%20with%20Unique%20Digits/README.md)
71+
- [600. 不含连续 1 的非负整数](/solution/0600-0699/0600.Non-negative%20Integers%20without%20Consecutive%20Ones/README.md)
72+
- [788. 旋转数字](/solution/0700-0799/0788.Rotated%20Digits/README.md)
73+
- [902. 最大为 N 的数字组合](/solution/0900-0999/0902.Numbers%20At%20Most%20N%20Given%20Digit%20Set/README.md)
74+
- [1012. 至少有 1 位重复的数字](/solution/1000-1099/1012.Numbers%20With%20Repeated%20Digits/README.md)
75+
- [2376. 统计特殊整数](/solution/2300-2399/2376.Count%20Special%20Integers/README.md)
6976

7077
<!-- tabs:start -->
7178

solution/0300-0399/0357.Count Numbers with Unique Digits/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,14 @@ $$
7979

8080
时间复杂度 $O(n)$。
8181

82-
相似题目:[233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
82+
相似题目:
83+
84+
- [233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
85+
- [600. 不含连续 1 的非负整数](/solution/0600-0699/0600.Non-negative%20Integers%20without%20Consecutive%20Ones/README.md)
86+
- [788. 旋转数字](/solution/0700-0799/0788.Rotated%20Digits/README.md)
87+
- [902. 最大为 N 的数字组合](/solution/0900-0999/0902.Numbers%20At%20Most%20N%20Given%20Digit%20Set/README.md)
88+
- [1012. 至少有 1 位重复的数字](/solution/1000-1099/1012.Numbers%20With%20Repeated%20Digits/README.md)
89+
- [2376. 统计特殊整数](/solution/2300-2399/2376.Count%20Special%20Integers/README.md)
8390

8491
<!-- tabs:start -->
8592

solution/0600-0699/0600.Non-negative Integers without Consecutive Ones/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,14 @@ $$
8080

8181
时间复杂度 $O(\log n)$。
8282

83-
相似题目:[233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
83+
相似题目:
84+
85+
- [233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
86+
- [357. 统计各位数字都不同的数字个数](/solution/0300-0399/0357.Count%20Numbers%20with%20Unique%20Digits/README.md)
87+
- [788. 旋转数字](/solution/0700-0799/0788.Rotated%20Digits/README.md)
88+
- [902. 最大为 N 的数字组合](/solution/0900-0999/0902.Numbers%20At%20Most%20N%20Given%20Digit%20Set/README.md)
89+
- [1012. 至少有 1 位重复的数字](/solution/1000-1099/1012.Numbers%20With%20Repeated%20Digits/README.md)
90+
- [2376. 统计特殊整数](/solution/2300-2399/2376.Count%20Special%20Integers/README.md)
8491

8592
<!-- tabs:start -->
8693

solution/0700-0799/0788.Rotated Digits/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,14 @@ $$
8080

8181
时间复杂度 $O(\log n)$。
8282

83-
相似题目:[233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
83+
相似题目:
84+
85+
- [233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
86+
- [357. 统计各位数字都不同的数字个数](/solution/0300-0399/0357.Count%20Numbers%20with%20Unique%20Digits/README.md)
87+
- [600. 不含连续 1 的非负整数](/solution/0600-0699/0600.Non-negative%20Integers%20without%20Consecutive%20Ones/README.md)
88+
- [902. 最大为 N 的数字组合](/solution/0900-0999/0902.Numbers%20At%20Most%20N%20Given%20Digit%20Set/README.md)
89+
- [1012. 至少有 1 位重复的数字](/solution/1000-1099/1012.Numbers%20With%20Repeated%20Digits/README.md)
90+
- [2376. 统计特殊整数](/solution/2300-2399/2376.Count%20Special%20Integers/README.md)
8491

8592
<!-- tabs:start -->
8693

solution/0900-0999/0902.Numbers At Most N Given Digit Set/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,14 @@ $$
8787

8888
时间复杂度 $O(\log n)$。
8989

90-
相似题目:[233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
90+
相似题目:
91+
92+
- [233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
93+
- [357. 统计各位数字都不同的数字个数](/solution/0300-0399/0357.Count%20Numbers%20with%20Unique%20Digits/README.md)
94+
- [600. 不含连续 1 的非负整数](/solution/0600-0699/0600.Non-negative%20Integers%20without%20Consecutive%20Ones/README.md)
95+
- [788. 旋转数字](/solution/0700-0799/0788.Rotated%20Digits/README.md)
96+
- [1012. 至少有 1 位重复的数字](/solution/1000-1099/1012.Numbers%20With%20Repeated%20Digits/README.md)
97+
- [2376. 统计特殊整数](/solution/2300-2399/2376.Count%20Special%20Integers/README.md)
9198

9299
<!-- tabs:start -->
93100

solution/1000-1099/1012.Numbers With Repeated Digits/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,14 @@ $$
6767

6868
时间复杂度 $O(m^2)$,其中 $m$ 是数字 $n$ 的位数,这里我们假定 $A_{m}^{n}$ 可以 $O(1)$ 时间算出。
6969

70-
相似题目:[2376.统计特殊整数](/solution/2300-2399/2376.Count%20Special%20Integers/README.md)
70+
相似题目:
71+
72+
- [233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
73+
- [357. 统计各位数字都不同的数字个数](/solution/0300-0399/0357.Count%20Numbers%20with%20Unique%20Digits/README.md)
74+
- [600. 不含连续 1 的非负整数](/solution/0600-0699/0600.Non-negative%20Integers%20without%20Consecutive%20Ones/README.md)
75+
- [788. 旋转数字](/solution/0700-0799/0788.Rotated%20Digits/README.md)
76+
- [902. 最大为 N 的数字组合](/solution/0900-0999/0902.Numbers%20At%20Most%20N%20Given%20Digit%20Set/README.md)
77+
- [2376. 统计特殊整数](/solution/2300-2399/2376.Count%20Special%20Integers/README.md)
7178

7279
<!-- tabs:start -->
7380

solution/2300-2399/2376.Count Special Integers/README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,14 @@ $$
6666

6767
时间复杂度 $O(m^2)$,其中 $m$ 是数字 $n$ 的位数,这里我们假定 $A_{m}^{n}$ 可以 $O(1)$ 时间算出。
6868

69-
相似题目:[1012.至少有 1 位重复的数字](/solution/1000-1099/1012.Numbers%20With%20Repeated%20Digits/README.md)
69+
相似题目:
70+
71+
- [233. 数字 1 的个数](/solution/0200-0299/0233.Number%20of%20Digit%20One/README.md)
72+
- [357. 统计各位数字都不同的数字个数](/solution/0300-0399/0357.Count%20Numbers%20with%20Unique%20Digits/README.md)
73+
- [600. 不含连续 1 的非负整数](/solution/0600-0699/0600.Non-negative%20Integers%20without%20Consecutive%20Ones/README.md)
74+
- [788. 旋转数字](/solution/0700-0799/0788.Rotated%20Digits/README.md)
75+
- [902. 最大为 N 的数字组合](/solution/0900-0999/0902.Numbers%20At%20Most%20N%20Given%20Digit%20Set/README.md)
76+
- [1012. 至少有 1 位重复的数字](/solution/1000-1099/1012.Numbers%20With%20Repeated%20Digits/README.md)
7077

7178
<!-- tabs:start -->
7279

0 commit comments

Comments
 (0)