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