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

accumulate: move important hint to instructions #1999

Merged
merged 1 commit into from
Dec 7, 2024
Merged
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: 0 additions & 4 deletions exercises/practice/accumulate/.docs/hints.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,3 @@ It may help to look at the Fn\* traits:
Help with passing a closure into a function may be found in
the ["closures as input parameters" section](https://doc.rust-lang.org/stable/rust-by-example/fn/closures/input_parameters.html) of
[Rust by Example](https://doc.rust-lang.org/stable/rust-by-example/).

The tests for this exercise will cause compile time errors,
if your function signature does not fit them, even when they're not run.
You may want to comment some tests out and generalize your solution piece by piece.
6 changes: 6 additions & 0 deletions exercises/practice/accumulate/.docs/instructions.append.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Instructions append

## Workflow

The tests for this exercise will cause compile time errors if your function signature does not fit them, even when they're not run.
You may want to comment some tests out and generalize your solution piece by piece.