advent-of-code/run.ps1
2022-12-19 22:32:15 +01:00

6 lines
136 B
PowerShell

param([switch]$Test, $day)
$folder = $Test ? "tests" : "inputs"
Get-Content ".\2022\$folder\day$day.txt" | python ".\2022\day$day.py"