Skip to content

Advent of Code 2024 Solved with Go

Notifications You must be signed in to change notification settings

regexbuster/adventofcode-2024

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Disclaimer: I will only be using the examples from the text as my system's input as requested by AOC's creator, Eric Wastl, when doing writeups of my work and thought process. Also, puzzle inputs, personal or generic, are not saved in this repo at the request of AOC's creator.

Advent of Code 2024

Goal

  • Complete as much of the 2024 advent of code
  • Do it in Go (as I want to learn Go and doing will help me learn)

Accomplishments So Far

Day Stars Notes
1 ** Nothing too fancy just manipulating lists of numbers
2 ** Second solution is sloppy and slow but otherwise fairly easy
3 ** Regex for the win
4 ** A bit verbose but was shooting for clarity while coding
5 ** Felt really confident going in and was able to use some sorting
6 * Fun puzzle reminds me of a Professor Layton like puzzle
7 ** Algorithm is inefficient but works well and I think is easy to follow
8 ** Fun little coordinate challenge :)
9 * Short and sweet list manipulation
10 ** I accidently solved part 2 before part 1
11 * Part 1 was very simple but not I'm learning go channels and goroutings to optimize part 2 better
12
13
14
15
16
17
18
19
20
21
22
23
24
25

Releases

No releases published

Packages

No packages published

Languages