Skip to content

Commit

Permalink
Update exercises/anagram/.meta/hints.md
Browse files Browse the repository at this point in the history
Co-Authored-By: Peter Goodspeed-Niklaus <[email protected]>
  • Loading branch information
Dimkar3000 and coriolinus authored May 30, 2019
1 parent 65b4b16 commit 7a89e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/anagram/.meta/hints.md
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"]`

0 comments on commit 7a89e31

Please sign in to comment.