Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 581 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 581 Bytes

Advent of Code 2023

Running the Puzzles

Copy and paste the sample data given in the problem into the day-X-a.sample-data.txt file.

Copy and paste your larger unique actual data set into the day-X-a.data.txt file.

Add your solution to the day-X-a.ts file.

To run your solution against your sample data set, run the following command:

nx day-1-a --data=sample

or

pnpm run day-1-a:sample

To run your solution against your actual data set, run the following command:

nx day-1-a

or

pnpm run day-1-a