Submission link

This commit is contained in:
DarkCat09 2023-07-07 21:26:40 +04:00
parent cd8655989a
commit 953391e21e

View file

@ -1,3 +1,5 @@
/* https://leetcode.com/problems/video-stitching/submissions/988741291 */
fn video_stitching(clips: Vec<Vec<i32>>, time: i32) -> i32 { fn video_stitching(clips: Vec<Vec<i32>>, time: i32) -> i32 {
let mut arr = clips.clone(); let mut arr = clips.clone();
arr.sort_by(|a, b| arr.sort_by(|a, b|