add updated exercise

This commit is contained in:
morales-gregorio 2024-08-29 17:30:29 +02:00
parent 47fa8f66c0
commit 86e99bb814
3 changed files with 144 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# This is bash, it executes the python script multiple times
for i in {1..10}
do
for j in {1..10}
do
python process_images.py $i $j images/*
done
done