Sha256: 249d197ca2eb8b412922f05b6a64c0c09d049cbf5ece631c9e9b8e3f39b9a495

Contents?: true

Size: 1.04 KB

Versions: 104

Compression:

Stored size: 1.04 KB

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.

## Running the tests

To run the tests run the command `go test` from within the exercise directory.

If the test suite contains benchmarks, you can run these with the `-bench`
flag:

    go test -bench .

Keep in mind that each reviewer will run benchmarks on a different machine, with
different specs, so the results from these benchmark tests may vary.

## Further information

For more detailed information about the Go track, including how to get help if
you're having trouble, please visit the exercism.io [Go language page](http://exercism.io/languages/go/about).


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

Version data entries

104 entries across 104 versions & 1 rubygems

Version Path
trackler-2.2.1.0 tracks/go/exercises/parallel-letter-frequency/README.md
trackler-2.2.0.6 tracks/go/exercises/parallel-letter-frequency/README.md
trackler-2.2.0.5 tracks/go/exercises/parallel-letter-frequency/README.md
trackler-2.2.0.4 tracks/go/exercises/parallel-letter-frequency/README.md