diff --git a/exercises/exerciseB/README.md b/exercises/exerciseB/README.md index 40ab9e6..aa5e61b 100755 --- a/exercises/exerciseB/README.md +++ b/exercises/exerciseB/README.md @@ -16,7 +16,7 @@ for different values of the number of steps. **TASKS**: 0. Read `numerical_integration.py` and familiarize yourselves with the code. 1. Update the `main` function so that it calculates the numerical error without - any parallelization. You can use a for loop or `map`. + any parallelization. You can use a `for` loop or `map`. 2. Note the execution time for this serial implementation. 3. Implement the parallel version using `multiprocessing.Pool`. 4. Compare the timing for the parallel version with the serial time.