Skip to content

tylerfehr/advent-of-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Advent of Code

__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

2022: Screen Shot 2022-12-08 at 10 56 57 AM

Run a Single Part's Solution

npx ts-node ./src/{year}/day-{day number}/part-{part number}

e.g.

npx ts-node ./src/2022/day-1/part-1.ts

Run All Solutions

yarn run solve

Permission Denied

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.