#!/bin/bash --norc

set -e
set -u

# Un-comment ONE of these lines to run each different program
# runprog="python3 pylist.py"
runprog="./array1"
# runprog="./array5"
# runprog="./array_double"

for i in {0..1000000..100000}; do
  seconds=$($runprog $i)
  echo -e "$i\t$seconds"
done
