diff --git a/video-stitching/src/main.rs b/video-stitching/src/main.rs index 4f431b5..5c34ea6 100644 --- a/video-stitching/src/main.rs +++ b/video-stitching/src/main.rs @@ -1,3 +1,5 @@ +/* https://leetcode.com/problems/video-stitching/submissions/988741291 */ + fn video_stitching(clips: Vec>, time: i32) -> i32 { let mut arr = clips.clone(); arr.sort_by(|a, b|