We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bb6377 commit c412197Copy full SHA for c412197
rust/253-Meeting-Rooms.rs
@@ -1,3 +1,4 @@
1
+// Interval is a struct with fields `start:i32` & `end:i32`
2
pub fn can_attend_meetings(intervals: Vec<Interval>) -> bool {
3
let mut intervals = intervals;
4
intervals.sort_unstable_by(|a, b| a.start.cmp(&b.start));
0 commit comments