summaryrefslogtreecommitdiff
path: root/exercism/emacs-lisp/anagram/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'exercism/emacs-lisp/anagram/README.md')
-rw-r--r--exercism/emacs-lisp/anagram/README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/exercism/emacs-lisp/anagram/README.md b/exercism/emacs-lisp/anagram/README.md
new file mode 100644
index 0000000..97a53a6
--- /dev/null
+++ b/exercism/emacs-lisp/anagram/README.md
@@ -0,0 +1,27 @@
+# Anagram
+
+Welcome to Anagram on Exercism's Emacs Lisp Track.
+If you need help running the tests or submitting your code, check out `HELP.md`.
+
+## Instructions
+
+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
+`"inlets"`.
+
+## Source
+
+### Created by
+
+- @canweriotnow
+
+### Contributed to by
+
+- @vermiculus
+
+### Based on
+
+Inspired by the Extreme Startup game - https://github.com/rchatley/extreme_startup \ No newline at end of file