forked from exercism/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update exercises/anagram/.meta/hints.md
Co-Authored-By: Peter Goodspeed-Niklaus <[email protected]>
- Loading branch information
1 parent
65b4b16
commit 7a89e31
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Hints | ||
|
||
The solution is case insensitive, that means `"WOrd"` is the same with `"word"` or `"woRd"`. It may help to take a peak in the [std library](https://doc.rust-lang.org/std/index.html) for functions that can convert between them. | ||
The solution is case insensitive, which means `"WOrd"` is the same as `"word"` or `"woRd"`. It may help to take a peek at the [std library](https://doc.rust-lang.org/std/index.html) for functions that can convert between them. | ||
|
||
The solution cannot contain the word itself. Basically a word is always an anagram of it's self but for this exercise we don't care. This mean, given `"hello"` and the list `["hello", "olleh"]` the answear is `["olleh"]` |