Skip to content

Commit

Permalink
fix(docs/misc/two-pointer.md): 数据范围 (OI-wiki#6120)
Browse files Browse the repository at this point in the history
fix(docs/misc/two-pointer.md): 数据范围看着奇奇怪怪的
  • Loading branch information
CodingOIer authored Feb 5, 2025
1 parent 14c51c8 commit 58056a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/misc/two-pointer.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
### 例题 1

???+ note " 例题 1 [leetcode 713. 乘积小于 K 的子数组](https://leetcode-cn.com/problems/subarray-product-less-than-k/)"
给定一个长度为 $n$ 的正整数数组 $\mathit{nums}$ 和整数 $k$,找出该数组内乘积小于 $k$ 的连续子数组的个数。$1 \leq n \leq 3 \times 10^4, 1 \leq nums[i] \leq 1000, 0 \leq k \leq 10^6$
给定一个长度为 $n$ 的正整数数组 $\mathit{nums}$ 和整数 $k$,找出该数组内乘积小于 $k$ 的连续子数组的个数。

其中,$1 \leq n \leq 3 \times 10^4, 1 \leq nums[i] \leq 1000, 0 \leq k \leq 10^6$。

#### 过程

Expand Down

0 comments on commit 58056a3

Please sign in to comment.