Table of Contents
This is console application with my solutions of Advent of Code quizes. In this moment I didn't solve every problem but there will be all solutions in the future.
I made this project with the aim of problem solving and LINQ practice. That's why most of solutions are made in LINQ (if there is a possibility to keep solution clean and readable at decent level)
-
Third party libraries
- Install .NET
- Clone the repo (or download in zip)
git clone https://github.com/adrianMoskal/AdventOfCode.git
- Navigate to AdventOfCode folder with source code and change puzzleInput.txt files content to your puzzle input.
- Launch
- Command line
Use this command to run explicit solution:
e.g.:dotnet run <year> <day>
dotnet run 2015 3
- Visual Studio
Right click on project and go to Debug section in project properties. Setup command line arguments:e.g.:<year> <number>
Run project2015 3
- Command line