exercism/go/parallel-letter-frequency
Brian Buller 50f4a86fd8 Initial Commit 2016-08-13 18:20:14 -05:00
..
README.md Initial Commit 2016-08-13 18:20:14 -05:00
by_the_letter.go Initial Commit 2016-08-13 18:20:14 -05:00
frequency.go Initial Commit 2016-08-13 18:20:14 -05:00
letter.go Initial Commit 2016-08-13 18:20:14 -05:00
parallel_letter_frequency_test.go Initial Commit 2016-08-13 18:20:14 -05:00

README.md

Parallel Letter Frequency

Write a program that counts 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.

To run the tests simply run the command go test in the exercise directory.

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

go test -bench .

For more detailed info about the Go track see the help page.

Source

view source