summaryrefslogtreecommitdiff
path: root/exercism/emacs-lisp/anagram/README.md
blob: 97a53a61d987541feacd32b51eb4480b66e47ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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