| GitHub | https://github.com/BrownBuilding/ |
| cool | maybe ๐ |
| GitHub | https://github.com/BrownBuilding/ |
| cool | maybe ๐ |
Happy Hearth's Warming Eve everypony!
I just completed "Cafeteria" - Day 5 - Advent of Code 2025 #AdventOfCode https://adventofcode.com/2025/day/5
I had to think a little this time
I just completed "Printing Department" - Day 4 - Advent of Code 2025 #AdventOfCode https://adventofcode.com/2025/day/4
Not thinking too hard about the data representation of the grid and just using the "raw" character of each cell paid off really well for me this time. It made part 2 super easy to solve and the solution way easier to read.
I really liked this one
I just completed "Lobby" - Day 3 - Advent of Code 2025 #AdventOfCode https://adventofcode.com/2025/day/3
First time using recursion this year
I just completed "Gift Shop" - Day 2 - Advent of Code 2025 #AdventOfCode https://adventofcode.com/2025/day/2
https://github.com/BrownBuilding/aoc2025/blob/main/day02
was fun ๐
I've completed "Secret Entrance" - Day 1 - Advent of Code 2025 #AdventOfCode https://adventofcode.com/2025/day/1
I always try to represent the input to these puzzles in memory as closely to the original input as possible short of just storing the raw bytes of the input file. You never know if a decision regarding data representation will makes part 2 more or less difficult. If I were to solve it again i would just use a signed integers per row. also using odin this year