From 455d189cf91988123ddf52f1dd47d69004959f53 Mon Sep 17 00:00:00 2001 From: ASPP Student Date: Fri, 26 Sep 2025 12:45:01 +0300 Subject: [PATCH] Created a plot --- exercises/exerciseA/plot.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exercises/exerciseA/plot.py b/exercises/exerciseA/plot.py index 4130224..0461d9e 100755 --- a/exercises/exerciseA/plot.py +++ b/exercises/exerciseA/plot.py @@ -19,5 +19,7 @@ fig, axs = plt.subplots() # CREATE YOUR PLOT HERE # Remember to label your axis # Feel free to make it pretty +plt.plot(threads, timings) + plt.savefig('threads_v_timings.png', dpi=300) -- 2.39.5