summaryrefslogtreecommitdiff
path: root/go/parallel-letter-frequency/README.md
blob: a2ed1ef5465e7a2bc7d5dd40d2538d34291200d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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](http://exercism.io/languages/go).



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