Sha256: 2d8dcf1114f4ded06b7ea2f598482a0e63f8900a90ef92701ddaea1ee7b823ef

Contents?: true

Size: 1 KB

Versions: 64

Compression:

Stored size: 1 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"`.

## Setup

Go through the setup instructions for JavaScript to
install the necessary dependencies:

http://exercism.io/languages/javascript

## Making the Test Suite Pass

Execute the tests with:

    jasmine <exercise-name>.spec.js

Replace `<exercise-name>` with the name of the current exercise. E.g., to
test the Hello World exercise:

    jasmine hello-world.spec.js

In many test suites all but the first test have been skipped.

Once you get a test passing, you can unskip the next one by
changing `xit` to `it`.

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

64 entries across 64 versions & 1 rubygems

Version Path
trackler-2.2.0.5 tracks/javascript/exercises/anagram/README.md
trackler-2.2.0.4 tracks/javascript/exercises/anagram/README.md
trackler-2.2.0.3 tracks/javascript/exercises/anagram/README.md
trackler-2.2.0.2 tracks/javascript/exercises/anagram/README.md