From 8c632811e3857f6050bdfd233757ba59c4835691 Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Sun, 21 Nov 2021 11:06:58 -0500 Subject: anagram exercise --- exercism/emacs-lisp/anagram/README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 exercism/emacs-lisp/anagram/README.md (limited to 'exercism/emacs-lisp/anagram/README.md') 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 -- cgit v1.2.3