Skip to content

Commit

Permalink
Worked around a bug in Jekyll's Liquid markdown preprocessor
Browse files Browse the repository at this point in the history
  • Loading branch information
100yo committed Oct 12, 2024
1 parent fb89b8a commit b06be99
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions 01-intro-to-java/lab/01-course-scheduler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,17 @@ public static int maxNonOverlappingCourses(int[][] courses)

### Примери

<!-- {% raw %} -->

| Извикване | Резултат |
| :------------------------------------------------------------------------------------------------- | :------- |
| `maxNonOverlappingCourses(new int[][]{{9, 11}, {10, 12}, {11, 13}, {15, 16}})` | `3` |
| `maxNonOverlappingCourses(new int[][]{{19, 22}, {17, 19}, {9, 12}, {9, 11}, {15, 17}, {15, 17}})` | `4` |
| `maxNonOverlappingCourses(new int[][]{{19, 22}})` | `1` |
| `maxNonOverlappingCourses(new int[][]{{13, 15}, {13, 17}, {11, 17}})` | `1` |

<!-- {% endraw %} -->

### :warning: Забележки

- Помисли, каква е сложността на използвания от теб алгоритъм и може ли да се оптимизира
Expand Down

0 comments on commit b06be99

Please sign in to comment.