diff --git a/AdventOfCode C#/README.md b/AdventOfCode C#/README.md index 329b47e..4cc8504 100644 --- a/AdventOfCode C#/README.md +++ b/AdventOfCode C#/README.md @@ -1,4 +1,4 @@ -# Advent Of Code +# Advent Of Code (C#) To create a new day's files, run the DayCreator project and specify the year (e.g. `2015`) and the day (e.g. `1` for Day01). This can be done in vscode by running `dotnet run --project "DayCreator"` in the terminal. diff --git a/AdventOfCode JS/README.md b/AdventOfCode JS/README.md new file mode 100644 index 0000000..60508d2 --- /dev/null +++ b/AdventOfCode JS/README.md @@ -0,0 +1,7 @@ +# Advent of Code (JS) + +To get started, use `npm install` to install the dependencies. + +To run the tests (and thus check your code gives an answer), use `npm test`. + +For each day there is a `dayXX.test.js` file which contains the code to solve the problem for that day. There is an example day file that can be duplicated for each new day. diff --git a/README.md b/README.md index 418c25b..2fc205f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ # Advent of Code -This repository contains all of my [Advent of Code](https://adventofcode.com/) solutions. Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as interview prep, company training, university coursework, practice problems, a speed contest, or to challenge each other. +This repository contains all of my [Advent of Code](https://adventofcode.com/) solutions. -You don't need a computer science background to participate - just a little programming knowledge and some problem solving skills will get you pretty far. Nor do you need a fancy computer; every problem has a solution that completes in at most 15 seconds on ten-year-old hardware. +Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as interview prep, company training, university coursework, practice problems, a speed contest, or to challenge each other. -Since 2021 all of my solutions can be found within the `AdventOfCode` folder. All prior (and less clean) solutions can be found in the `old` folder. +You don't need a computer science background to participate - just a little programming knowledge and some problem solving skills will get you pretty far. Nor do you need a fancy computer; every problem has a solution that completes in at most 15 seconds on ten-year-old hardware. Some people even solve the problems using a spreadsheet! + +Since 2021 all of my solutions can be found within the `AdventOfCode` folder for any given language. All prior (and less clean) solutions can be found in the `old` folder.