Sha256: 2b7996c4bb277e235e4a36a9f8fc2f1f69d8aeed463fa14b3dd61873afe99e7c
Contents?: true
Size: 932 Bytes
Versions: 181
Compression:
Stored size: 932 Bytes
Contents
# 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"`. ## Setup Follow the setup instructions for Crystal here: http://exercism.io/languages/crystal More help installing can be found here: http://crystal-lang.org/docs/installation/index.html ## Making the Test Suit Pass Execute the tests with: ```bash $ crystal spec ``` In each test suite all but the first test have been skipped. Once you get a test passing, you can unskip the next one by changing `pending` to `it`. ## 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.
Version data entries
181 entries across 181 versions & 1 rubygems
Version | Path |
---|---|
trackler-2.2.0.5 | tracks/crystal/exercises/anagram/README.md |