Skip to content

Commit c53ee3c

Browse files
committed
create 0056-merge-intervals.rs
1 parent 71b7a67 commit c53ee3c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

rust/0056-merge-intervals.rs

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
impl Solution {
2+
pub fn merge(mut intervals: Vec<Vec<i32>>) -> Vec<Vec<i32>> {
3+
intervals.sort_by(|a, b| a[0].cmp(&b[0]));
4+
let acc = vec![intervals.first().unwrap().clone()];
5+
intervals.into_iter().skip(1).fold(acc, |mut acc, e| {
6+
let last = acc.last().unwrap();
7+
if e[0] <= last[1] {
8+
acc.last_mut().unwrap()[1] = last[1].max(e[1]);
9+
} else {
10+
acc.push(e)
11+
}
12+
acc
13+
})
14+
}
15+
}

0 commit comments

Comments
 (0)