Sha256: 6e3f08659288b8cf26d35db2459f54ceab685819088b5cf6aecbdeb4405d5d12
Contents?: true
Size: 1.09 KB
Versions: 55
Compression:
Stored size: 1.09 KB
Contents
# Word Search In word search puzzles you get a square of letters and have to find specific words in them. For example: ```text jefblpepre camdcimgtc oivokprjsm pbwasqroua rixilelhrs wolcqlirpc screeaumgr alxhpburyi jalaycalmp clojurermt ``` There are several programming languages hidden in the above square. Words can be hidden in all kinds of directions: left-to-right, right-to-left, vertical and diagonal. Given a puzzle and a list of words return the location of the first and last letter of each word. ## Setup Go through the setup instructions for ECMAScript to install the necessary dependencies: http://exercism.io/languages/ecmascript/installation ## Requirements Install assignment dependencies: ```bash $ npm install ``` ## Making the test suite pass Execute the tests with: ```bash $ npm test ``` In the test suites all tests but the first have been skipped. Once you get a test passing, you can enable the next one by changing `xtest` to `test`. ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
55 entries across 55 versions & 1 rubygems