Skip to content

Commit ad743b4

Browse files
authored
Update README with solution method in Chinese
1 parent 78eb49e commit ad743b4

File tree

1 file changed

+1
-4
lines changed
  • solution/2700-2799/2762.Continuous Subarrays

1 file changed

+1
-4
lines changed

solution/2700-2799/2762.Continuous Subarrays/README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,6 @@ func continuousSubarrays(nums []int) (ans int64) {
180180
}
181181
ans += int64(j - i + 1)
182182
}
183-
feat: add solutions to lc problem: No.0929 (#3857)
184-
185-
No.0929.Unique Email Addresses return
186183
}
187184
```
188185

@@ -192,7 +189,7 @@ No.0929.Unique Email Addresses return
192189

193190
<!-- solution:start -->
194191

195-
### Solution 2: Monotonic queue + Two Pointers
192+
### 方法二:单调队列 + 双指针
196193

197194
<!-- tabs:start -->
198195

0 commit comments

Comments
 (0)