Sync wordy#932
Merged
mk-mxp merged 7 commits intoexercism:mainfrom Oct 12, 2025
Merged
Conversation
|
This PR touches files which potentially affect the outcome of the tests of an exercise. This will cause all students' solutions to affected exercises to be re-tested. If this PR does not affect the result of the test (or, for example, adds an edge case that is not worth rerunning all tests for), please add the following to the merge-commit message which will stops student's tests from re-running. Please copy-paste to avoid typos. For more information, refer to the documentation. If you are unsure whether to add the message or not, please ping |
59 tasks
homersimpsons
approved these changes
Oct 11, 2025
tomasnorre
approved these changes
Oct 12, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Run
bin/configlet sync -u -e wordy --yes --docs --filepaths --metadata --tests include(updates the Markdown files and maybetests.toml)Drop strict types comments from test file and example code (these are useless)
Add and sync test meta data to tests (
uuidin DocBlocks /#TestDox())Add exercise to
bin/auto-sync.txtto keep it in sync (keep the file alphabetically sorted)Decide on adding / adjusting / ordering test cases to match current problem specs
Breaking:
'just a number''just a zero''just a negative number'Non-breaking:
'addition with a left hand zero''addition with a right hand zero''reject problem missing an operand''reject problem with no operands or operators''reject two operations in a row''reject two numbers in a row''reject postfix notation''reject prefix notation'326 started, 213 solutions -> I think it is OK to break them. Single number is a reasonable requirement, that's not too hard.
Raise difficulty to
5(medium). It was1(easy), which it is not. There is a complicated RegEx or some character-based parsing involved -> medium at least.