Add more challenges + cleanup (#5368)

Signed-off-by: Merwane Hamadi <merwanehamadi@gmail.com>
This commit is contained in:
merwanehamadi
2023-09-27 17:58:58 -07:00
committed by GitHub
parent 5acb5ad9b7
commit 37fbb52d19
47 changed files with 1273 additions and 768 deletions

View File

@@ -51,7 +51,6 @@ graph_example = {
def test_dfs_category_math(curriculum_graph):
result_graph = extract_subgraph_based_on_category(curriculum_graph, "math")
# Expected nodes: Algebra, Calculus, Advanced Calculus
@@ -70,7 +69,6 @@ def test_dfs_category_math(curriculum_graph):
def test_extract_subgraph_math_category():
subgraph = extract_subgraph_based_on_category(graph_example, "math")
assert set(
(node["id"], tuple(node["data"]["category"])) for node in subgraph["nodes"]