Sha256: 635bfcb5a5153386a52edadf3eddd3761182f8129186554da674795d6720eb1c

Contents?: true

Size: 1.08 KB

Versions: 68

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

68 entries across 68 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.118 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.117 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.116 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.115 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.114 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.113 tracks/ecmascript/exercises/word-search/README.md
trackler-2.2.1.111 tracks/ecmascript/exercises/word-search/README.md