summaryrefslogtreecommitdiff
path: root/exercism/emacs-lisp/anagram/README.md
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2021-11-21 11:06:58 -0500
committerKjetil Orbekk <kj@orbekk.com>2021-11-21 11:06:58 -0500
commit8c632811e3857f6050bdfd233757ba59c4835691 (patch)
tree91da03f29b7a169762d2688926d5cb940e92e667 /exercism/emacs-lisp/anagram/README.md
parent6e73544775e99026edab513e4ee1bb7fd610ebb4 (diff)
anagram exercise
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