This repository contains my solutions for the Advent of Code puzzles.
- Use
python3 -m venv venvto create a virtual environment - Use
source venv/bin/activateto activate the virtual environment - Use
pip install -r requirements.txtto install the requirements - Use
python3 -m pytestto run the tests
- Use
go mod init github.com/hiranp/advent-of-code/2023to create a go module - Use
go run solver.goto run the main program - Use
go buildto build the program - Use
go testto run the tests
Using the (Advent of Code Kotlin Template)[https://github.com/kotlin-hands-on/advent-of-code-kotlin-template] delivered by JetBrains.