You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have n jobs, where every job is scheduled to be done from startTime[i] to endTime[i], obtaining a profit of profit[i].
6
+
7
+
You're given the startTime, endTime and profit arrays, return the maximum profit you can take such that there are no two jobs in the subset with overlapping time range.
8
+
9
+
If you choose a job that ends at time X you will be able to start another job that starts at time X.
Copy file name to clipboardExpand all lines: Leetcode Daily Challenge/August-2021/README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,4 +29,6 @@
29
29
| 25. |[Sum of Square Numbers](https://leetcode.com/explore/challenge/card/august-leetcoding-challenge-2021/616/week-4-august-22nd-august-28th/3918/)|[cpp](./25.%20Sum%20of%20Square%20Numbers.cpp)|
30
30
| 26. |[Verify Preorder Serialization of a Binary Tree](https://leetcode.com/explore/challenge/card/august-leetcoding-challenge-2021/616/week-4-august-22nd-august-28th/3920/)|[cpp](./26.%20Verify%20Preorder%20Serialization%20of%20a%20Binary%20Tree.cpp)|
0 commit comments