My AdventOfCode.com solutions. This repository contains my solutions for the AdventOfCode puzzles written in Kotlin.
Each puzzle has its own kotlin file. Within each file there is a main method that can be used to run each solution.
This repository does not contain the input for the Puzzles.
You can use your input by placing it in the resources
folder, like shown in the following directory tree.
.
├── kotlin
│ ├── Puzzle.kt
│ ├── Puzzle1.kt
│ ├── Puzzle2.kt
│ ├── Puzzle3.kt
│ └── Puzzle4.kt
└── resources
├── 1
│ └── input.txt
├── 2
│ └── input.txt
├── 3
│ └── input.txt
└── 4
└── input.txt