summary refs log tree commit diff stats
path: root/emacs-lisp/anagram/README.md
blob: 88d0118a5adddd3a19536671b05a65d668da7436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Anagram

Given a word and a list of possible anagrams, select the correct sublist.

Given `"listen"` and a list of candidates like `"enlists" "google"
"inlets" "banana"` the program should return a list containing
`"inlets"`.
## Source

Inspired by the Extreme Startup game [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.