From 09cb454b49e01adcbad7dd4ba08729e2d762901e Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Sun, 24 Oct 2021 15:22:52 +0200 Subject: [PATCH 1/7] Add prerequisites for collatz-conjecture exercise --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index cfbe88ff9a..ac620a0389 100644 --- a/config.json +++ b/config.json @@ -526,7 +526,7 @@ "name": "Collatz Conjecture", "uuid": "b8dacb3a-51d0-4da7-a6d2-aa29867e2b8c", "practices": [], - "prerequisites": [], + "prerequisites": ["while-loops", "conditionals", "errors"], "difficulty": 3, "topics": [ "conditionals", From 42488156ba05da253fda0eeeab99b00117dbf6e4 Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Sun, 24 Oct 2021 20:19:47 +0200 Subject: [PATCH 2/7] Add prerequisites for exercise triangle --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index ac620a0389..f0f68fe20a 100644 --- a/config.json +++ b/config.json @@ -542,7 +542,7 @@ "name": "Triangle", "uuid": "ed3ca73a-a0f0-46b8-8013-8b6d20758c8f", "practices": [], - "prerequisites": [], + "prerequisites": ["numbers", "arithmetic-operators", "classes"], "difficulty": 3, "topics": ["conditionals", "loops", "exception_handling", "integers"] }, From d13d7868be3d003992e38eee271da1cf06661c51 Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Sun, 24 Oct 2021 20:48:16 +0200 Subject: [PATCH 3/7] Add prerequisites for exercise 'clock' --- config.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index f0f68fe20a..04f27d8c57 100644 --- a/config.json +++ b/config.json @@ -551,7 +551,12 @@ "name": "Clock", "uuid": "4e0e2c30-be33-49b6-b196-213888a93a0c", "practices": [], - "prerequisites": [], + "prerequisites": [ + "arithmetic-operators", + "numbers", + "classes", + "strings" + ], "difficulty": 5, "topics": ["dates", "globalization", "time"] }, From be7131ae1613f39394be759a592f879a576bf080 Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Sun, 24 Oct 2021 20:56:04 +0200 Subject: [PATCH 4/7] Add prerequisites for exercise 'etl' --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 04f27d8c57..50d072c0e1 100644 --- a/config.json +++ b/config.json @@ -581,7 +581,7 @@ "name": "Etl", "uuid": "db16804b-0f63-445d-8beb-99e0f7218d66", "practices": [], - "prerequisites": [], + "prerequisites": ["objects", "for-loops", "arrays", "strings"], "difficulty": 2, "topics": ["loops", "integers", "maps", "transforming"] }, From 2a0aa5d1a5f23f12a2627204182970494e956081 Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Mon, 25 Oct 2021 22:44:16 +0200 Subject: [PATCH 5/7] fixup! Add prerequisites for exercise 'etl' --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 50d072c0e1..0f37426449 100644 --- a/config.json +++ b/config.json @@ -581,7 +581,7 @@ "name": "Etl", "uuid": "db16804b-0f63-445d-8beb-99e0f7218d66", "practices": [], - "prerequisites": ["objects", "for-loops", "arrays", "strings"], + "prerequisites": ["objects", "array-loops", "arrays", "strings"], "difficulty": 2, "topics": ["loops", "integers", "maps", "transforming"] }, From d12bc0040883eba8008a3aeaa9f9eeeb814e1f25 Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Mon, 25 Oct 2021 22:53:31 +0200 Subject: [PATCH 6/7] fixup! Add prerequisites for exercise triangle --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 0f37426449..00e974f794 100644 --- a/config.json +++ b/config.json @@ -542,7 +542,7 @@ "name": "Triangle", "uuid": "ed3ca73a-a0f0-46b8-8013-8b6d20758c8f", "practices": [], - "prerequisites": ["numbers", "arithmetic-operators", "classes"], + "prerequisites": ["numbers", "booleans", "comparison", "classes"], "difficulty": 3, "topics": ["conditionals", "loops", "exception_handling", "integers"] }, From b8bc2b3d36422dccefb1290cc6f1f2e557ad8f50 Mon Sep 17 00:00:00 2001 From: Tom Pradat Date: Mon, 25 Oct 2021 22:55:37 +0200 Subject: [PATCH 7/7] fixup! Add prerequisites for collatz-conjecture exercise --- config.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 00e974f794..3a9c2aa128 100644 --- a/config.json +++ b/config.json @@ -526,7 +526,13 @@ "name": "Collatz Conjecture", "uuid": "b8dacb3a-51d0-4da7-a6d2-aa29867e2b8c", "practices": [], - "prerequisites": ["while-loops", "conditionals", "errors"], + "prerequisites": [ + "arithmetic-operators", + "comparison", + "while-loops", + "conditionals", + "errors" + ], "difficulty": 3, "topics": [ "conditionals",