Your task is to implement a function that takes a list of events and returns the maximum number of events you can attend without any overlaps.
Each event is represented as a pair of integers [start, end] where 0 ≤ start < end ≤ 1440 (the number of minutes in a day). Two events do not overlap if one event ends at or before the other begins. For example, if one event ends at time t and another starts at time t, they are not considered overlapping.
maxNonOverlappingEvents(events)
, where events
is a list of pairs (or a list of lists) of integers.For events = [[60, 150], [160, 240], [120, 180], [200, 300]]
, one optimal selection is to attend the events [60, 150] and [160, 240] (or [200, 300]); the maximum number of events you can attend without conflicts is 2.
Write your solution in the programming language of your choice.