Sha256: 8c8773f15a862ac2d9db98ce01b860572d9bb315b5238fb0b9c09a6505519e72

Contents?: true

Size: 1.08 KB

Versions: 9

Compression:

Stored size: 1.08 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

## 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

9 entries across 9 versions & 1 rubygems

Version Path
trackler-2.2.1.55 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.54 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.53 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.52 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.51 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.50 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.49 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.48 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.47 tracks/ecmascript/exercises/word-search/README.md