Update 0352 solution

This commit is contained in:
halfrost
2021-10-19 21:21:21 +08:00
committed by halfrost
parent 44541dc0ef
commit 9effade48f
7 changed files with 1603 additions and 1468 deletions

View File

@ -1,4 +1,4 @@
# [352. Data Stream as Disjoint Intervals](https://leetcode-cn.com/problems/data-stream-as-disjoint-intervals/)
# [352. Data Stream as Disjoint Intervals](https://leetcode.com/problems/data-stream-as-disjoint-intervals/)
## 题目

View File

@ -41,6 +41,11 @@ func Test_Problem875(t *testing.T) {
para875{[]int{30, 11, 23, 4, 20}, 6},
ans875{23},
},
{
para875{[]int{4, 9, 11, 17}, 8},
ans875{6},
},
}
fmt.Printf("------------------------Leetcode Problem 875------------------------\n")