__Note: Caught covid the last few weeks. I'm still planning on completing the entirety of the challenge, probably just not super quickly
My solutions for advent of code
npx ts-node ./src/{year}/day-{day number}/part-{part number}
e.g.
npx ts-node ./src/2022/day-1/part-1.ts
yarn run solve
If you get a permission denied
error after running the solve
command, run:
chmod u+r+x ./src/run-all-solutions.sh
to grant read and execute permissions to the script.