Sha256: 6ff7e81d7795ee974e313579d03ab13ec6e20c9cfc45e1ec4eeb03c4ae663926

Contents?: true

Size: 857 Bytes

Versions: 106

Compression:

Stored size: 857 Bytes

Contents

# Parallel Letter Frequency

Count the frequency of letters in texts using parallel computation.

Parallelism is about doing things in parallel that can also be done
sequentially. A common example is counting the frequency of letters.
Create a function that returns the total frequency of each letter in a
list of texts and that employs parallelism.

* * * *

For installation and learning resources, refer to the [exercism help page][].

[exercism help page]: http://exercism.io/languages/lfe

To run the provided tests, you will need `make`.
Open a terminal window and run the following from the exercise directory:

```sh
make test
```

You should now be able to see the results of the test suite for the exercise.


## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

106 entries across 106 versions & 1 rubygems

Version Path
trackler-2.2.1.10 tracks/lfe/exercises/parallel-letter-frequency/README.md
trackler-2.2.1.9 tracks/lfe/exercises/parallel-letter-frequency/README.md
trackler-2.2.1.8 tracks/lfe/exercises/parallel-letter-frequency/README.md
trackler-2.2.1.7 tracks/lfe/exercises/parallel-letter-frequency/README.md
trackler-2.2.1.6 tracks/lfe/exercises/parallel-letter-frequency/README.md
trackler-2.2.1.5 tracks/lfe/exercises/parallel-letter-frequency/README.md