8 lines
147 B
Bash
Executable File
8 lines
147 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
year=$1
|
|
day=$2
|
|
|
|
gcc -o $year/$day/problem $year/$day/problem.c
|
|
time (cat ../data/$year/$day/input.txt | ./$year/$day/problem)
|