Sha256: bafb3a8b0b8839429214f9b92758e18ac8ac24f9cf305d9753b932a802333d3f
Contents?: true
Size: 679 Bytes
Versions: 92
Compression:
Stored size: 679 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"`. Run the tests with: ```bash bats anagram_test.sh ``` After the first test(s) pass, continue by commenting out or removing the `skip` annotations prepending other tests. ## 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
92 entries across 92 versions & 1 rubygems