Skip to content

Commit 9123f93

Browse files
committed
#57: description update
1 parent 47a230d commit 9123f93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

c-sharp/Problems/intervals/InsertInterval.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
* Explanation: Because the new interval [4,8] overlaps with [3,5],[6,7],[8,10].
2929
*
3030
* Constraints:
31-
* • 0 <= intervals.length <= 104
31+
* • 0 <= intervals.length <= 10^4
3232
* • intervals[i].length == 2
33-
* • 0 <= starti <= endi <= 105
33+
* • 0 <= starti <= endi <= 10^5
3434
* • intervals is sorted by starti in ascending order.
3535
* • newInterval.length == 2
36-
* • 0 <= start <= end <= 105
36+
* • 0 <= start <= end <= 10^5
3737
**
3838
* https://leetcode.com/problems/insert-interval/
3939
***/

0 commit comments

Comments
 (0)