From e41e132b6016ccf0c09f9f78c4dd2bd66c3f1c2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 23 Sep 2025 15:33:47 +0300 Subject: [PATCH] exB: add markup --- exercises/exerciseB/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.