Solution Review: Sum With Goroutines
Understand the solution for the “Sum With Goroutines” challenge.
We'll cover the following...
Solution overview
For this challenge, you were required to implement a multi-threaded application to sum the numbers in the provided lists. Let's start with the findParallelSum
function.
The findParallelSum
function needs to spawn goroutines equal to the number of lists provided. ...