From 54a76adfd68353f05ef9c500aeac1fd802a02ff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos=20Gris?= Date: Mon, 10 Jun 2019 16:49:05 -0300 Subject: [PATCH] Improve anagram problem statement - Add definition of anagram - Improve readability Fixes #1528 --- exercises/anagram/description.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exercises/anagram/description.md b/exercises/anagram/description.md index 8b49329084..43fc7d45e2 100644 --- a/exercises/anagram/description.md +++ b/exercises/anagram/description.md @@ -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