Skip to content

Files

Latest commit

 

History

History
28 lines (16 loc) · 778 Bytes

README.md

File metadata and controls

28 lines (16 loc) · 778 Bytes

Advent of Code 2023

License: MIT

This repository contains solutions to the 2023 Advent of Code challenges.

About

Every year I use the Advent of Code challenges to teach myself a new programming language and build up my problem-solving skills.

This year, I've chosen the language Go, and will be practising test driven development (TDD) throughout the month.

How to use this project

Run all tests

This is run by CI on all branches

$ go list -f '{{.Dir}}/...' -m | xargs go test

Solve a single day's puzzle

$ go run ./src/<day directory>