exercism

Exercism solutions.
git clone git://code.dwrz.net/exercism
Log | Files | Refs

README.md (505B)


      1 # Anagram
      2 
      3 Given a word and a list of possible anagrams, select the correct sublist.
      4 
      5 Given `"listen"` and a list of candidates like `"enlists" "google"
      6 "inlets" "banana"` the program should return a list containing
      7 `"inlets"`.
      8 ## Source
      9 
     10 Inspired by the Extreme Startup game [https://github.com/rchatley/extreme_startup](https://github.com/rchatley/extreme_startup)
     11 
     12 ## Submitting Incomplete Solutions
     13 It's possible to submit an incomplete solution so you can see how others have completed the exercise.