Skip to content

Commit 1c742ca

Browse files
committed
✨feat: add 650 & 526
1 parent 4bd1e15 commit 1c742ca

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Index/二分.md

-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,3 @@
7777
| [剑指 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/) | 简单 | 🤩🤩🤩🤩🤩 |
7878
| [剑指 Offer II 008. 和大于等于 target 的最短子数组](https://leetcode.cn/problems/2VG8Kg/) | [LeetCode 题解链接](https://leetcode.cn/problems/2VG8Kg/solution/by-ac_oier-vw5r/) | 中等 | 🤩🤩🤩🤩 |
7979
| [剑指 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-

Index/计算几何.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
| [587. 安装栅栏](https://leetcode-cn.com/problems/erect-the-fence/) | [LeetCode 题解链接](https://leetcode-cn.com/problems/erect-the-fence/solution/by-ac_oier-4xuu/) | 困难 | 🤩🤩🤩🤩🤩 |
44
| [593. 有效的正方形](https://leetcode.cn/problems/valid-square/) | [LeetCode 题解链接](https://leetcode.cn/problems/valid-square/solution/by-ac_oier-lwdf/) | 中等 | 🤩🤩🤩🤩🤩 |
55
| [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/) | 困难 | 🤩🤩🤩🤩 |
67

LeetCode/521-530/526. 优美的排列(中等).md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Tag : 「位运算」、「状压 DP」、「动态规划」
3131
```
3232

3333
说明:
34-
* N 是一个正整数,并且不会超过15
34+
* $N$ 是一个正整数,并且不会超过 $15$
3535

3636
---
3737

LeetCode/641-650/650. 只有两个键的键盘(中等).md

+7-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44

55
Tag : 「动态规划」、「线性 DP」、「数学」、「打表」
66

7-
最初记事本上只有一个字符 'A' 。你每次可以对这个记事本进行两种操作:
87

9-
* Copy All(复制全部):复制这个记事本中的所有字符(不允许仅复制部分字符)。
10-
* Paste(粘贴):粘贴 上一次 复制的字符。
118

12-
给你一个数字 n ,你需要使用最少的操作次数,在记事本上输出 恰好 n 个 'A' 。返回能够打印出 n 个 'A' 的最少操作次数。
9+
最初记事本上只有一个字符 `'A'` 。你每次可以对这个记事本进行两种操作:
10+
11+
* `Copy All(复制全部)`:复制这个记事本中的所有字符(不允许仅复制部分字符)。
12+
* `Paste(粘贴)`:粘贴 上一次 复制的字符。
13+
14+
给你一个数字 `n` ,你需要使用最少的操作次数,在记事本上输出 恰好 `n` 个 `'A'` 。返回能够打印出 `n` 个 `'A'` 的最少操作次数。
1315

1416

1517
示例 1:
@@ -32,7 +34,7 @@ Tag : 「动态规划」、「线性 DP」、「数学」、「打表」
3234
```
3335

3436
提示:
35-
* 1 <= n <= 1000
37+
* $1 <= n <= 1000$
3638

3739
---
3840

0 commit comments

Comments
 (0)