Sha256: 85e428e2f6d84d40cc0d5d3d3725db81ee0f1321a1143cc8c5bf1395abf1d76a

Contents?: true

Size: 738 Bytes

Versions: 44

Compression:

Stored size: 738 Bytes

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"`.

## Running the tests

Even though there are multiple implementations, we encourage to use Poly/ML.

```
$ poly -q < test_{ exercise }.sml
```

If you want to start an interactive session:
```
$ poly --use test_{ exercise }.sml
```

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

44 entries across 44 versions & 1 rubygems

Version Path
trackler-2.2.1.0 tracks/sml/exercises/anagram/README.md
trackler-2.2.0.6 tracks/sml/exercises/anagram/README.md
trackler-2.2.0.5 tracks/sml/exercises/anagram/README.md
trackler-2.2.0.4 tracks/sml/exercises/anagram/README.md