Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework sum-of-multiples documentation #2249

Merged
merged 8 commits into from
Apr 10, 2023
Merged

Conversation

kytrinyx
Copy link
Member

This exercise is one of the focus exercises for 12in23.

This PR is part of our project of making our Practice Exercises more consistent and human. For more context please see this forum thread

We aim to merge this PR in roughly 72 hours, and then submit PRs to all tracks that have this exercise.

The main change is to frame the exercise within the context of a story.

This PR is part of our project of making our Practice Exercises
more consistent and human. For more context please see the
following forum-thread:
https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943

The main change is to frame the exercise within the context of story.
@kytrinyx kytrinyx requested a review from a team as a code owner March 31, 2023 14:16
@IsaacG
Copy link
Member

IsaacG commented Mar 31, 2023

To be honest, I find the old prose a lot easier to read. It surfaces the numbers/examples/details without having to parse all the prose. Would it make sense to have an example that is more numbers and less text?

@kytrinyx
Copy link
Member Author

kytrinyx commented Mar 31, 2023

Do you have any suggestions for a pretext that adds color without all the verbosity? I really struggled with this one because I couldn't find a single down to earth, real world situation that would use this.

I don't like the old one at all, but I'm not married to this version at all. I would be open to just deprecating the exercise if we can't find a workable story.

@IsaacG
Copy link
Member

IsaacG commented Mar 31, 2023

I don't have a story suggestion and I'm perfectly fine with this one.

I think, in general, examples are much easier to read when they focus on the values and use less prose. Mixing the prose and example data makes the example much harder to follow and adds another layer of "word problem" reading comprehension.

- To find the unique multiples, we can combine these two sets of multiples and remove any duplicates: `{3, 5, 6, 9, 10, 12, 15, 18, 20}`
- The sum of all these unique multiples is: `3 + 5 + 6 + 9 + 10 + 12 + 15 + 18 + 20 = 98`
+ Find the unique multiples (combing the sets and removing duplicates): `{3, 5, 6, 9, 10, 12, 15, 18, 20}`
+ Sum the unique multiples: `3 + 5 + 6 + 9 + 10 + 12 + 15 + 18 + 20 = 98`

@kytrinyx
Copy link
Member Author

examples are much easier to read when they focus on the values and use less prose

This is a really useful observation, and I'm adding it to my personal list of guidelines to follow when working on these.

I like your improvement here.

@kytrinyx
Copy link
Member Author

What do you think of this?

-- The player completed level 20 and found two magical items with base values of 3 and 5.
-- To calculate the energy points earned by the player, we need to find all the unique multiples of these base values that are less than or equal to level 20.
-- For the base value of 3, the multiples less than or equal to 20 are: 3, 6, 9, 12, 15, 18, and 20.
-- For the base value of 5, the multiples less than or equal to 20 are: 5, 10, 15, and 20.
-- To find the unique multiples, we can combine these two sets of multiples and remove any duplicates: `{3, 5, 6, 9, 10, 12, 15, 18, 20}`
-- The sum of all these unique multiples is: `3 + 5 + 6 + 9 + 10 + 12 + 15 + 18 + 20 = 98`
+**The player completed level 20 and found two magical items with base values of 3 and 5.**
+
+To calculate the energy points earned by the player, we need to find all the unique multiples of these base values that are less than or equal to level 20.
+
+- Multiples of 3 up to 20: `{3, 6, 9, 12, 15, 18, 20}`
+- Multiples of 5 up to 20: `{5, 10, 15, 20}`
+- Combine the sets and remove duplicates: `{3, 5, 6, 9, 10, 12, 15, 18, 20}`
+- Sum the unique multiples: `3 + 5 + 6 + 9 + 10 + 12 + 15 + 18 + 20 = 98`
 - Therefore, the player earns **98** energy points for completing level 20 and finding the two magical items with base values of 3 and 5.

@IsaacG
Copy link
Member

IsaacG commented Mar 31, 2023

What do you think of this?

I think that's a lot simpler to read :) Thanks!

@kytrinyx
Copy link
Member Author

kytrinyx commented Apr 1, 2023

Thanks @IsaacG. I've pushed that up!

Co-authored-by: Peter Tseng <petertseng@users.noreply.github.com>
exercises/sum-of-multiples/instructions.md Outdated Show resolved Hide resolved
exercises/sum-of-multiples/instructions.md Outdated Show resolved Hide resolved
kytrinyx and others added 2 commits April 3, 2023 08:55
Co-authored-by: Derk-Jan Karrenbeld <derk-jan+github@karrenbeld.info>
Co-authored-by: Derk-Jan Karrenbeld <derk-jan+github@karrenbeld.info>
Copy link
Member

@ee7 ee7 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also can't think of a better story.

If we keep it, can we simplify it further? The old description is dry, but I personally find it much easier to read. However, I acknowlege that I'm probably not an representative reader.

Trying to be concrete, I think the introduction has a lot of nouns: Enchanted Expeditions, terrain, resources, materials, metals, fibers, wood, tools, gear, weapons, energy, levels, magical items.

Maybe we can remove some of those, without losing too much flavor? I think the reader only needs to know about: levels, magical items, base values, and energy.

exercises/sum-of-multiples/instructions.md Outdated Show resolved Hide resolved
exercises/sum-of-multiples/instructions.md Outdated Show resolved Hide resolved
exercises/sum-of-multiples/instructions.md Outdated Show resolved Hide resolved
kytrinyx and others added 3 commits April 10, 2023 13:53
Co-authored-by: Jeremy Walker <jez.walker@gmail.com>
Co-authored-by: Isaac Good <IsaacG@users.noreply.github.com>
Co-authored-by: Isaac Good <IsaacG@users.noreply.github.com>
@kytrinyx kytrinyx merged commit 7f333ae into main Apr 10, 2023
@kytrinyx kytrinyx deleted the sum-of-multiples-rewrite branch April 10, 2023 12:05
kytrinyx added a commit to exercism/scheme that referenced this pull request Apr 10, 2023
The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249
kytrinyx added a commit to exercism/prolog that referenced this pull request Apr 10, 2023
The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249
jonmcalder added a commit to exercism/r that referenced this pull request Apr 11, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Sync sum-of-multiples docs with problem-specifications

There were a few follow-on tweaks to sum-of-multiples.

For context, this is part of the project to overhaul all the practice exercises.
You can read about that here:
https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943

----

If you approve this pull request, I will eventually merge it. However, if you are happy with this change **please merge the pull request**, as it will get the changes into the hands of the students much more quickly.

If this pull request contradicts the exercise on your track, **please add a review with _request changes_**. This will block the pull request from getting merged.

Otherwise we aim to take an optimistic merging approach.

If you wish to suggest tweaks to these changes, please open a pull request to the exercism/problem-specifications repository to discuss, so that everyone who has an interest in the shared exercise descriptions can participate.

---------

Co-authored-by: Jon Calder <jonmcalder@gmail.com>
vaeng pushed a commit to exercism/cpp that referenced this pull request Apr 11, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
tejasbubane pushed a commit to exercism/javascript that referenced this pull request Apr 11, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
ErikSchierboom added a commit to exercism/csharp that referenced this pull request Apr 12, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Sync sum-of-multiples docs with problem-specifications

There were a few follow-on tweaks to sum-of-multiples.

For context, this is part of the project to overhaul all the practice exercises.
You can read about that here:
https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943

----

If you approve this pull request, I will eventually merge it. However, if you are happy with this change **please merge the pull request**, as it will get the changes into the hands of the students much more quickly.

If this pull request contradicts the exercise on your track, **please add a review with _request changes_**. This will block the pull request from getting merged.

Otherwise we aim to take an optimistic merging approach.

If you wish to suggest tweaks to these changes, please open a pull request to the exercism/problem-specifications repository to discuss, so that everyone who has an interest in the shared exercise descriptions can participate.

---------

Co-authored-by: Erik Schierboom <erik_schierboom@hotmail.com>
ErikSchierboom added a commit to exercism/fsharp that referenced this pull request Apr 12, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Sync sum-of-multiples docs with problem-specifications

There were a few follow-on tweaks to sum-of-multiples.

For context, this is part of the project to overhaul all the practice exercises.
You can read about that here:
https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943

----

If you approve this pull request, I will eventually merge it. However, if you are happy with this change **please merge the pull request**, as it will get the changes into the hands of the students much more quickly.

If this pull request contradicts the exercise on your track, **please add a review with _request changes_**. This will block the pull request from getting merged.

Otherwise we aim to take an optimistic merging approach.

If you wish to suggest tweaks to these changes, please open a pull request to the exercism/problem-specifications repository to discuss, so that everyone who has an interest in the shared exercise descriptions can participate.

---------

Co-authored-by: Erik Schierboom <erik_schierboom@hotmail.com>
Bajger pushed a commit to exercism/pharo-smalltalk that referenced this pull request Apr 12, 2023
The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249
ErikSchierboom pushed a commit to exercism/prolog that referenced this pull request Apr 12, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
meatball133 pushed a commit to exercism/crystal that referenced this pull request Apr 12, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
glennj pushed a commit to glennj/exercism-awk that referenced this pull request Apr 23, 2023
The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249
kytrinyx added a commit to exercism/euphoria that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/groovy that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/java that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/kotlin that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/swift that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/scala that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/delphi that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/objective-c that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/powershell that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/typescript that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/haskell that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/lfe that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/php that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/rust that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/purescript that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/d that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/cfml that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/scheme that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/unison that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/clojure that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
kytrinyx added a commit to exercism/go that referenced this pull request May 16, 2023
* Sync sum-of-multiples docs with problem-specifications

The sum-of-multiples exercise has been overhauled as part of a project
to make practice exercises more consistent and friendly.

For more context, please see the discussion in the forum, as well as
the pull request that updated the exercise in the problem-specifications
repository:

- https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943
- exercism/problem-specifications#2249

* Run configlet sync on sum-of-multiples
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants