aoc_omni/c/bin/run

8 lines
151 B
Plaintext
Raw Normal View History

2023-12-19 14:42:49 -05:00
#!/usr/bin/env bash
year=$1
day=$2
2024-11-29 21:03:10 -05:00
gcc -o $year/$day/problem $year/$day/problem.c -lm
time (cat ../data/$year/$day/input.txt | ./$year/$day/problem)