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