Skip to content

Commit 6abe9c2

Browse files
committed
Fix formatting in README.md
1 parent dfcb983 commit 6abe9c2

File tree

1 file changed

+4
-4
lines changed
  • sliding-window/209_Minumum_Size_Subarray_Sum

1 file changed

+4
-4
lines changed

sliding-window/209_Minumum_Size_Subarray_Sum/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ If there is no such subarray, return `0` instead.
2222
* Input: `target = 11`, `nums = [1,1,1,1,1,1,1,1]`
2323
* Output: `0`
2424

25-
Constraints:
25+
**Constraints:**
2626

27-
* `1 <= target <= 109`
28-
* `1 <= nums.length <= 105`
29-
* `1 <= nums[i] <= 104`
27+
* `1 <= target <= 10^9`
28+
* `1 <= nums.length <= 10^5`
29+
* `1 <= nums[i] <= 10^4`
3030

3131

3232
## Solution

0 commit comments

Comments
 (0)