File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ We want to use the task that occurs the most first so we can reduce the amount o
11
11
With that, a max heap can help us find those set of tasks.
12
12
13
13
However, there is one tricky edge case that I've noted below.
14
- If you had an input will many tasks that occur the same amount of times and one that occurs many times.
15
- Its actually bad to start all the tasks in the first go around.
16
- Its better to interweave them between the one task that occurs many times to reduce idle times.
14
+ If we had an input with many tasks that occur the same amount of times and one that occurs many times.
15
+ It is actually bad to start all the tasks in the first go around.
16
+ Better to interweave them between the one task that occurs many times to reduce idle times.
17
17
18
18
** Important edge case to consider**
19
19
```
You can’t perform that action at this time.
0 commit comments