|
87 | 87 | * Graphs |
88 | 88 | * Course Schedule |
89 | 89 | * [Test Course Schedule](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/course_schedule/test_course_schedule.py) |
| 90 | + * Evaluate Division |
| 91 | + * [Test Evaluate Division](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/evaluate_division/test_evaluate_division.py) |
90 | 92 | * Frog Position After T Seconds |
91 | 93 | * [Test Frog Position After T Seconds](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/frog_position_after_t_seconds/test_frog_position_after_t_seconds.py) |
| 94 | + * Keys And Rooms |
| 95 | + * [Test Can Visit All Rooms](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/keys_and_rooms/test_can_visit_all_rooms.py) |
| 96 | + * Knight On Chess Board |
| 97 | + * [Test Knight On Chess Board](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/knight_on_chess_board/test_knight_on_chess_board.py) |
| 98 | + * Maxareaofisland |
| 99 | + * [Test Max Area Of Island](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/maxareaofisland/test_max_area_of_island.py) |
| 100 | + * Min Cost To Supply |
| 101 | + * [Test Min Cost To Supply](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/min_cost_to_supply/test_min_cost_to_supply.py) |
| 102 | + * Nearest Exit From Entrance In Maze |
| 103 | + * [Test Nearest Exit From Entrance](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/nearest_exit_from_entrance_in_maze/test_nearest_exit_from_entrance.py) |
| 104 | + * Number Of Islands |
| 105 | + * [Test Number Of Islands](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/number_of_islands/test_number_of_islands.py) |
| 106 | + * [Union Find](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/number_of_islands/union_find.py) |
| 107 | + * Number Of Provinces |
| 108 | + * [Test Number Of Provinces](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/number_of_provinces/test_number_of_provinces.py) |
| 109 | + * Reorder Routes |
| 110 | + * [Test Reorder Routes](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/reorder_routes/test_reorder_routes.py) |
| 111 | + * Rotting Oranges |
| 112 | + * [Test Rotting Oranges](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/rotting_oranges/test_rotting_oranges.py) |
| 113 | + * Valid Path |
| 114 | + * [Test Valid Path](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/graphs/valid_path/test_valid_path.py) |
92 | 115 | * Greedy |
93 | 116 | * Boats |
94 | 117 | * [Test Boats To Save People](https://github.com/BrianLusina/PythonSnips/blob/master/algorithms/greedy/boats/test_boats_to_save_people.py) |
|
583 | 606 | * [Test Climb Stairs](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/climb_stairs/test_climb_stairs.py) |
584 | 607 | * Find Missing Elem |
585 | 608 | * [Test Find Missing Elem](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/find_missing_elem/test_find_missing_elem.py) |
586 | | - * Graphs |
587 | | - * Evaluate Division |
588 | | - * [Test Evaluate Division](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/evaluate_division/test_evaluate_division.py) |
589 | | - * Keys And Rooms |
590 | | - * [Test Can Visit All Rooms](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/keys_and_rooms/test_can_visit_all_rooms.py) |
591 | | - * Knight On Chess Board |
592 | | - * [Test Knight On Chess Board](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/knight_on_chess_board/test_knight_on_chess_board.py) |
593 | | - * Maxareaofisland |
594 | | - * [Test Max Area Of Island](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/maxareaofisland/test_max_area_of_island.py) |
595 | | - * Nearest Exit From Entrance In Maze |
596 | | - * [Test Nearest Exit From Entrance](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/nearest_exit_from_entrance_in_maze/test_nearest_exit_from_entrance.py) |
597 | | - * Number Of Islands |
598 | | - * [Test Number Of Islands](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/number_of_islands/test_number_of_islands.py) |
599 | | - * [Union Find](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/number_of_islands/union_find.py) |
600 | | - * Number Of Provinces |
601 | | - * [Test Number Of Provinces](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/number_of_provinces/test_number_of_provinces.py) |
602 | | - * Reorder Routes |
603 | | - * [Test Reorder Routes](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/reorder_routes/test_reorder_routes.py) |
604 | | - * Rotting Oranges |
605 | | - * [Test Rotting Oranges](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/rotting_oranges/test_rotting_oranges.py) |
606 | | - * Valid Path |
607 | | - * [Test Valid Path](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/graphs/valid_path/test_valid_path.py) |
608 | 609 | * Hashmap |
609 | 610 | * Close Strings |
610 | 611 | * [Test Close Strings](https://github.com/BrianLusina/PythonSnips/blob/master/puzzles/hashmap/close_strings/test_close_strings.py) |
|
0 commit comments