From 039def7e74196a1bf5756ca057736fd222e5505f Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Tue, 25 Oct 2022 21:51:57 +0200 Subject: [PATCH 1/4] Add prerequisites for exercise matching-brackets --- config.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 6e0f63c55a..55f26cd40f 100644 --- a/config.json +++ b/config.json @@ -824,7 +824,12 @@ "name": "Matching Brackets", "uuid": "4d456646-3a9b-4393-9558-6b30e5c1039c", "practices": [], - "prerequisites": [], + "prerequisites": [ + "strings", + "arrays", + "conditionals-switch", + "for-loops" + ], "difficulty": 3, "topics": [ "conditionals", From ef2f5ebeb15f2eaf7c5a4c75c36c8ab573ed5691 Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Tue, 25 Oct 2022 22:21:03 +0200 Subject: [PATCH 2/4] Add prerequisites for exercise series --- config.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 55f26cd40f..7a3a08e5b7 100644 --- a/config.json +++ b/config.json @@ -867,7 +867,14 @@ "name": "Series", "uuid": "5178ae53-5364-46c9-bee3-70e6e8a8c2e3", "practices": [], - "prerequisites": [], + "prerequisites": [ + "arrays", + "strings", + "errors", + "classes", + "conditionals", + "array-transformations" + ], "difficulty": 3, "topics": ["loops", "exception_handling", "strings", "text_formatting"] }, From 2f932b38b7313f4e04a430920ced8b04345bf80e Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Thu, 27 Oct 2022 22:31:11 +0200 Subject: [PATCH 3/4] Add prerequisites for exercise grep --- config.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 7a3a08e5b7..7208016e34 100644 --- a/config.json +++ b/config.json @@ -916,7 +916,13 @@ "name": "Grep", "uuid": "78bcbae1-a0f2-460c-ba89-e51844fe9397", "practices": [], - "prerequisites": [], + "prerequisites": [ + "arrays", + "strings", + "for-loops", + "array-analysis", + "template-strings" + ], "difficulty": 4, "topics": ["files", "searching", "text_formatting"] }, From 91c906bac5f55350903d730f34c09c4dee2b34ea Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Thu, 27 Oct 2022 23:16:43 +0200 Subject: [PATCH 4/4] Add prerequisites for exercise spiral-matrix --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 7208016e34..7778a858a2 100644 --- a/config.json +++ b/config.json @@ -940,7 +940,7 @@ "name": "Spiral Matrix", "uuid": "c1abafcc-0d44-4fb5-afae-bff3ce2e1b39", "practices": [], - "prerequisites": [], + "prerequisites": ["arrays", "for-loops", "conditionals"], "difficulty": 4, "topics": [ "arrays",