Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is the result of work being done to structure the exercises in a track according to a predefined methodology (this work is not finished). As a result of that work, the core exercises have been reordered a bit. The new ordering is as follows:
The most notable changes are:
two-fer
: moved up from position 6 to 2. This was always a wrongly ordered exercise, with its solution being far simpler than some of its preceding core exercises. It has not been moved to position 2, as it is not only simple to solve, but is also a natural extension of the precedinghello-world
exercise.series
: has become a core exercise. Its sole goal is to introduce users to collection's in C#, which we previously did not have a good, simple exercise for.gigasecond
: has become a core exercise. Its goal is to introduce theDateTime
type early on, as it is a very important, core data type in c#.space-age
: has become a core exercise. Its goal is to introduce floating point numbers relatively early.sum-of-multiples
: no longer a core exercise. This is due to a recently added policy to exclude "mathy" exercises as core exercise.accumulate
: no longer a core exercise. This is due to the fact that what it tries to teach (laziness) is a rather advanced concept that requires more advanced knowledge of the language, but the actual solution is so simple that advanced users would solve it without giving it a moment's thought.The current ordering is not perfect, there is still lots to improve, but I feel it is definitely an improvement over the current situation. I'm interested in hearing your thoughts!