File tree 4 files changed +9
-7
lines changed
4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 77
77
| [ 剑指 Offer 53 - II. 0~n-1中缺失的数字] ( https://leetcode.cn/problems/que-shi-de-shu-zi-lcof/ ) | [ LeetCode 题解链接] ( https://leetcode.cn/problems/que-shi-de-shu-zi-lcof/solution/by-ac_oier-gs6q/ ) | 简单 | 🤩🤩🤩🤩🤩 |
78
78
| [ 剑指 Offer II 008. 和大于等于 target 的最短子数组] ( https://leetcode.cn/problems/2VG8Kg/ ) | [ LeetCode 题解链接] ( https://leetcode.cn/problems/2VG8Kg/solution/by-ac_oier-vw5r/ ) | 中等 | 🤩🤩🤩🤩 |
79
79
| [ 剑指 Offer II 069. 山峰数组的顶部] ( https://leetcode-cn.com/problems/B1IidL/ ) | [ LeetCode 题解链接] ( https://leetcode-cn.com/problems/B1IidL/solution/gong-shui-san-xie-er-fen-san-fen-ji-zhi-lc8zl/ ) | 简单 | 🤩🤩🤩🤩🤩 |
80
-
Original file line number Diff line number Diff line change 3
3
| [ 587. 安装栅栏] ( https://leetcode-cn.com/problems/erect-the-fence/ ) | [ LeetCode 题解链接] ( https://leetcode-cn.com/problems/erect-the-fence/solution/by-ac_oier-4xuu/ ) | 困难 | 🤩🤩🤩🤩🤩 |
4
4
| [ 593. 有效的正方形] ( https://leetcode.cn/problems/valid-square/ ) | [ LeetCode 题解链接] ( https://leetcode.cn/problems/valid-square/solution/by-ac_oier-lwdf/ ) | 中等 | 🤩🤩🤩🤩🤩 |
5
5
| [ 1037. 有效的回旋镖] ( https://leetcode.cn/problems/valid-boomerang/ ) | [ LeetCode 题解链接] ( https://leetcode.cn/problems/valid-boomerang/solution/by-ac_oier-eory/ ) | 简单 | 🤩🤩🤩🤩🤩 |
6
+ | [ 1610. 可见点的最大数目] ( https://leetcode.cn/problems/maximum-number-of-visible-points/ ) | [ LeetCode 题解链接] ( https://leetcode.cn/problems/maximum-number-of-visible-points/solution/gong-shui-san-xie-qiu-ji-jiao-ji-he-ti-b-0bid/ ) | 困难 | 🤩🤩🤩🤩 |
6
7
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Tag : 「位运算」、「状压 DP」、「动态规划」
31
31
```
32
32
33
33
说明:
34
- * N 是一个正整数,并且不会超过15 。
34
+ * $N$ 是一个正整数,并且不会超过 $15$ 。
35
35
36
36
---
37
37
Original file line number Diff line number Diff line change 4
4
5
5
Tag : 「动态规划」、「线性 DP」、「数学」、「打表」
6
6
7
- 最初记事本上只有一个字符 'A' 。你每次可以对这个记事本进行两种操作:
8
7
9
- * Copy All(复制全部):复制这个记事本中的所有字符(不允许仅复制部分字符)。
10
- * Paste(粘贴):粘贴 上一次 复制的字符。
11
8
12
- 给你一个数字 n ,你需要使用最少的操作次数,在记事本上输出 恰好 n 个 'A' 。返回能够打印出 n 个 'A' 的最少操作次数。
9
+ 最初记事本上只有一个字符 ` 'A' ` 。你每次可以对这个记事本进行两种操作:
10
+
11
+ * ` Copy All(复制全部) ` :复制这个记事本中的所有字符(不允许仅复制部分字符)。
12
+ * ` Paste(粘贴) ` :粘贴 上一次 复制的字符。
13
+
14
+ 给你一个数字 ` n ` ,你需要使用最少的操作次数,在记事本上输出 恰好 ` n ` 个 ` 'A' ` 。返回能够打印出 ` n ` 个 ` 'A' ` 的最少操作次数。
13
15
14
16
15
17
示例 1:
@@ -32,7 +34,7 @@ Tag : 「动态规划」、「线性 DP」、「数学」、「打表」
32
34
```
33
35
34
36
提示:
35
- * 1 <= n <= 1000
37
+ * $ 1 <= n <= 1000$
36
38
37
39
---
38
40
You can’t perform that action at this time.
0 commit comments