From 7890f6ae2a8060ec34edd881c1a0a88bcc46755a Mon Sep 17 00:00:00 2001 From: ASPP Student Date: Fri, 26 Sep 2025 12:45:52 +0300 Subject: [PATCH] Plot fuction added --- exercises/exerciseA/plot.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/exercises/exerciseA/plot.py b/exercises/exerciseA/plot.py index 4130224..5f8898d 100755 --- a/exercises/exerciseA/plot.py +++ b/exercises/exerciseA/plot.py @@ -20,4 +20,8 @@ fig, axs = plt.subplots() # Remember to label your axis # Feel free to make it pretty +axs.bar(threads, timings) + +fig.show() + plt.savefig('threads_v_timings.png', dpi=300) -- 2.39.5