package
0.0.0-20231216031245-352ca3995437
Repository: https://github.com/edgejay/adventofcode.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

2023 Day 2

Learnings

  1. Revision of regexp handling in Go.
  2. Usage of regexp.FindStringSubmatch and regexp.FindAllStringSubmatch.
  3. Proper setup of Game struct to manage parsing of each line of input saved a lot of time when in comes to solving puzzle 2
  4. Unit tests helped a lot too.