https://github.com/jackson-nestelroad/advent-of-code-2020
Solutions for the 2020 Advent of Code event.
https://github.com/jackson-nestelroad/advent-of-code-2020
advent-of-code advent-of-code-2020
Last synced: 7 months ago
JSON representation
Solutions for the 2020 Advent of Code event.
- Host: GitHub
- URL: https://github.com/jackson-nestelroad/advent-of-code-2020
- Owner: jackson-nestelroad
- Created: 2020-11-28T19:39:38.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-28T03:37:01.000Z (almost 5 years ago)
- Last Synced: 2025-01-29T09:20:27.109Z (8 months ago)
- Topics: advent-of-code, advent-of-code-2020
- Language: C#
- Homepage:
- Size: 143 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2020
This repository features solutions to the 2020 **Advent of Code** hosted on https://adventofcode.com/2020/about.## About
For my third year doing Advent of Code, I chose to implement my solutions using the **C#** programming language.Although many people focus on the competitive aspect of Advent of Code, coding up a solution as fast as possible, I use the problems to explore code design and execution efficiency. All of my solutions must run in less than one second. This is a very gracious limit, but it rules out many brute force algorithms. The only exception to this rule is Day 15, Part B because there is no possible optimization to decrease the runtime opposed to using a more efficient programming language or better hardware.