Sha256: 3cc03c911be87e8e289782bba7c2f932c3612e7b00c0f938c26c496cc8541318
Contents?: true
Size: 1.46 KB
Versions: 132
Compression:
Stored size: 1.46 KB
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"`. * * * * To run the code in this exercise, you will only need to have [CommandBox CLI installed](https://ortus.gitbooks.io/commandbox-documentation/content/setup/installation.html). This binary runs CFML code from the command line. To run the tests, `cd` into the exercise folder and run the following: ```bash box task run TestRunner # Or start up a test watcher that will rerun when files change box task run TestRunner --:watcher ``` The tests leverage a library called TestBox which supports xUnit and BDD style of testing. All test suites will be written in the [BDD style](https://testbox.ortusbooks.com/content/primers/bdd/specs.html) which uses closures to define test specs. You won't need to worry about installing TestBox. The CLI test runner will take care of that for you. You just need to be connected to the internet the first time you run it. You can read more about it here: [https://testbox.ortusbooks.com/content/](https://testbox.ortusbooks.com/content/) ## 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
132 entries across 132 versions & 1 rubygems