...

/

Challenge: Write Code with Worker Pool Pattern

Challenge: Write Code with Worker Pool Pattern

Learn to write code using the worker pool pattern.

We'll cover the following...

Problem statement

Write code that generates random integers less than or equal to 1,000 and calculates the sum of digits of each of the integers while following the instructions below:

  • Don’t create any global variables.
...