advent-of-code/run.ps1

6 lines
136 B
PowerShell
Raw Normal View History

2022-12-19 21:17:29 +00:00
param([switch]$Test, $day)
2022-12-13 10:18:31 +00:00
2022-12-19 21:17:29 +00:00
$folder = $Test ? "tests" : "inputs"
Get-Content ".\2022\$folder\day$day.txt" | python ".\2022\day$day.py"