From 2897e6833a50f4351a559d43da43de5072f89b25 Mon Sep 17 00:00:00 2001 From: Anastasios Chatzialexiou <16361161+tasxatzial@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:56:02 +0300 Subject: [PATCH 1/2] deprecate binary, trinary, octal, hexadecimal in favor of all-your-base --- config.json | 39 ++++++++++++++++----------------------- 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/config.json b/config.json index aacb72eb8..b9cec05b2 100644 --- a/config.json +++ b/config.json @@ -734,13 +734,12 @@ "name": "Binary", "uuid": "daf3daed-61ef-4964-8d33-e7a739c7a470", "practices": [], - "prerequisites": [ - "numbers" - ], + "prerequisites": [], "difficulty": 3, "topics": [ "math" - ] + ], + "status": "deprecated" }, { "slug": "binary-search", @@ -846,13 +845,12 @@ "name": "Hexadecimal", "uuid": "a4b1b39a-d942-4921-9b67-2bd913ff52a0", "practices": [], - "prerequisites": [ - "numbers" - ], + "prerequisites": [], "difficulty": 3, "topics": [ "math" - ] + ], + "status": "deprecated" }, { "slug": "isbn-verifier", @@ -1009,14 +1007,12 @@ "name": "Trinary", "uuid": "f8a7f5eb-e317-4ffa-bdef-6e30a36511eb", "practices": [], - "prerequisites": [ - "numbers", - "strings" - ], + "prerequisites": [], "difficulty": 3, "topics": [ "math" - ] + ], + "status": "deprecated" }, { "slug": "allergies", @@ -1111,16 +1107,13 @@ "slug": "octal", "name": "Octal", "uuid": "fa596153-0cbe-40e9-a4d6-1a66fe6ef7e5", - "practices": [ - "numbers" - ], - "prerequisites": [ - "numbers" - ], + "practices": [], + "prerequisites": [], "difficulty": 4, "topics": [ "math" - ] + ], + "status": "deprecated" }, { "slug": "spiral-matrix", @@ -1365,10 +1358,10 @@ "practices": [], "prerequisites": [ "lists", - "closures" + "closures", + "vectors" ], - "difficulty": 5, - "status": "wip" + "difficulty": 5 } ] }, From b70393650a8509203698c25cc93777d091e9d766 Mon Sep 17 00:00:00 2001 From: Anastasios Chatzialexiou <16361161+tasxatzial@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:56:44 +0300 Subject: [PATCH 2/2] deprecate accumulate in favor of list-ops --- config.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/config.json b/config.json index b9cec05b2..8286e9a61 100644 --- a/config.json +++ b/config.json @@ -243,13 +243,12 @@ "name": "Accumulate", "uuid": "49f62bbc-0f60-4922-b5a6-f266b80442f4", "practices": [], - "prerequisites": [ - "numbers" - ], + "prerequisites": [], "difficulty": 2, "topics": [ "algorithms, core_functions" - ] + ], + "status": "deprecated" }, { "slug": "acronym",