After the merging of #229, problems.md now duplicates config.json in both problem order (it was already duplicating it in this regard) and topics (added). So, what should we do about this duplication?
There are two pieces of information in problems.md that are not present in config.json
- Background including links to posts explaining why we order the problems as we do.
- Section headers
## Introduction
The first section contains the sort of stuff you expect when learning any programming languages: conditionals, booleans, looping and some higher-order functions.
Option 1: We could do something really silly like "the first (not ALL, that is duplication) problem of a section gets a section_name and a section_description", like this:
{
"slug": "hello-world",
"difficulty": 1,
"section_name": "Introduction",
"section_description": "The first section contains the sort of stuff you expect when learning any programming languages: conditionals, booleans, looping and some higher-order functions.",
"topics": [
"Some/None",
"println!"
]
},
{
"slug": "gigasecond",
"difficulty": 1,
"topics": [
"crates",
"math"
]
}
(and so on)
Option 2: Keep the problem order duplicated in problems.md along with keeping the section headers there, but remove all topics from it, pointing to config.json as the authoritative source for the topics?
Option 3: Remove problems.md completely, losing our section headers and background.
Option 4: Keep problems.md as-is, accepting the duplication of topics.
Please also provide alternative options, if you have any.
I find option 4 completely unacceptable, but can be convinced of the other three options. My leading option is 1. This means I might execute option 1 at a time convenient to me if nobody provides a better alternative before that time (since there has been time to ponder over this while considering #229)
After the merging of #229, problems.md now duplicates config.json in both problem order (it was already duplicating it in this regard) and topics (added). So, what should we do about this duplication?
There are two pieces of information in problems.md that are not present in config.json
Option 1: We could do something really silly like "the first (not ALL, that is duplication) problem of a section gets a
section_nameand asection_description", like this:{ "slug": "hello-world", "difficulty": 1, "section_name": "Introduction", "section_description": "The first section contains the sort of stuff you expect when learning any programming languages: conditionals, booleans, looping and some higher-order functions.", "topics": [ "Some/None", "println!" ] }, { "slug": "gigasecond", "difficulty": 1, "topics": [ "crates", "math" ] }(and so on)
Option 2: Keep the problem order duplicated in problems.md along with keeping the section headers there, but remove all topics from it, pointing to config.json as the authoritative source for the topics?
Option 3: Remove problems.md completely, losing our section headers and background.
Option 4: Keep problems.md as-is, accepting the duplication of topics.
Please also provide alternative options, if you have any.
I find option 4 completely unacceptable, but can be convinced of the other three options. My leading option is 1. This means I might execute option 1 at a time convenient to me if nobody provides a better alternative before that time (since there has been time to ponder over this while considering #229)