Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 1.22 KB

File metadata and controls

21 lines (16 loc) · 1.22 KB

Advent of Code

My attempts to follow along with the Advent of Code events in GoLang.

2020

  • Day 1 - Find the values in a list which sum to a given value, solution.
  • Day 2 - Evaluate whether a given password meets a trivial policy, solution.
  • Day 3 - Traverse a grid of trees at a given slope, solution.
  • Day 4 - Validate passports given certain constraints, solution.
  • Day 5 - Find your seat on an airplane given an encoded boarding pass, solution.
  • Day 6 - Count the unique number of "yes" questions on customs form, solution.
  • Day 7 - Recursively search bags for certain colors, solution.
  • Day 8 - Troubleshoot a set of boot instructions, solution.
  • Day 9 - Unencrypt data given an algorithm, solution.
  • Day 10 - Figure out combinations of voltage adapters, solution.

2021

  • Day 1 - Count the number of increasing values compared to a previously given value, solution.
  • Day 2 - Track position on a cartesian coordinate system given a set of instructions, solution.