Skip to content

Commit

Permalink
Improve anagram problem statement (#1529)
Browse files Browse the repository at this point in the history
- Add definition of anagram
- Improve readability

Fixes #1528
  • Loading branch information
gris authored and SleeplessByte committed Jun 10, 2019
1 parent a0e2de3 commit c7a7bbc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion exercises/anagram/description.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Given a word and a list of possible anagrams, select the correct sublist.
An anagram is a rearrangement of letters to form a new word.
Given a word and a list of candidates, select the sublist of anagrams of the given word.

Given `"listen"` and a list of candidates like `"enlists" "google"
"inlets" "banana"` the program should return a list containing
Expand Down

0 comments on commit c7a7bbc

Please sign in to comment.