Maximum Profit in Job Scheduling
Question (LC.1235)
Examples
I:
start_time = [1, 2, 3, 3]
end_time = [3, 4, 5, 6]
profit = [50, 10, 40, 70]
O: 120
I:
startTime = [1, 2, 3, 4, 6]
endTime = [3, 5, 10, 6, 9]
profit = [20, 20, 100, 70, 60]
O: 150Approach

Code
Time Complexity
Last updated