Skip to content

Update instructions to match tests and function signature. #2089

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

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/practice/say/.docs/instructions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Instructions

Given a number from 0 to 999,999,999,999, spell out that number in English.
Given a positive integer from 0 to u64::MAX (a bit more than 18 quintillion),
spell out that number in English.

## Step 1

Expand All @@ -16,7 +17,6 @@ Some good test cases for this program are:
- 14
- 50
- 98
- -1
- 100

### Extension
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/say/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
".meta/example.rs"
]
},
"blurb": "Given a number from 0 to 999,999,999,999, spell out that number in English.",
"blurb": "Given a number from 0 to u64::MAX, spell out that number in English.",
"source": "A variation on the JavaRanch CattleDrive, Assignment 4",
"source_url": "https://web.archive.org/web/20240907035912/https://coderanch.com/wiki/718804"
}