File tree 7 files changed +56
-7
lines changed
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 Original file line number Diff line number Diff line change 65
65
66
66
时间复杂度 $O(\log n)$。
67
67
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 )
69
76
70
77
<!-- tabs:start -->
71
78
Original file line number Diff line number Diff line change 79
79
80
80
时间复杂度 $O(n)$。
81
81
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 )
83
90
84
91
<!-- tabs:start -->
85
92
Original file line number Diff line number Diff line change 80
80
81
81
时间复杂度 $O(\log n)$。
82
82
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 )
84
91
85
92
<!-- tabs:start -->
86
93
Original file line number Diff line number Diff line change 80
80
81
81
时间复杂度 $O(\log n)$。
82
82
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 )
84
91
85
92
<!-- tabs:start -->
86
93
Original file line number Diff line number Diff line change 87
87
88
88
时间复杂度 $O(\log n)$。
89
89
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 )
91
98
92
99
<!-- tabs:start -->
93
100
Original file line number Diff line number Diff line change 67
67
68
68
时间复杂度 $O(m^2)$,其中 $m$ 是数字 $n$ 的位数,这里我们假定 $A_ {m}^{n}$ 可以 $O(1)$ 时间算出。
69
69
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 )
71
78
72
79
<!-- tabs:start -->
73
80
Original file line number Diff line number Diff line change 66
66
67
67
时间复杂度 $O(m^2)$,其中 $m$ 是数字 $n$ 的位数,这里我们假定 $A_ {m}^{n}$ 可以 $O(1)$ 时间算出。
68
68
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 )
70
77
71
78
<!-- tabs:start -->
72
79
You can’t perform that action at this time.
0 commit comments