From b190fb0ee72d858721df7bb20b84ce1a3db0e0f8 Mon Sep 17 00:00:00 2001 From: ASPP Student Date: Fri, 26 Sep 2025 12:48:25 +0300 Subject: [PATCH] Add plot --- exercises/exerciseA/plot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/exerciseA/plot.py b/exercises/exerciseA/plot.py index 4130224..d98282f 100755 --- a/exercises/exerciseA/plot.py +++ b/exercises/exerciseA/plot.py @@ -15,6 +15,7 @@ timings = np.array(timings) print('This is the data I loaded: threads =', threads, ', timings =',timings) fig, axs = plt.subplots() +axs.plot(threads, timings) # CREATE YOUR PLOT HERE # Remember to label your axis -- 2.39.5