https://github.com/namchee/aoc2020
Solutions for Advent of Code 2020. Written in Rust
https://github.com/namchee/aoc2020
Last synced: over 1 year ago
JSON representation
Solutions for Advent of Code 2020. Written in Rust
- Host: GitHub
- URL: https://github.com/namchee/aoc2020
- Owner: Namchee
- Created: 2020-12-06T12:14:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-24T06:48:22.000Z (over 5 years ago)
- Last Synced: 2025-01-30T03:28:03.388Z (over 1 year ago)
- Language: Rust
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Advent of Code 2020 Solutions
My personal solution for 2020's [Advent of Code](https://adventofcode.com/) puzzles.
Made solely for learning purposes, so these solutions are mostly late submissions. Mostly written in [Rust](https://www.rust-lang.org/), but I'll use C++11 or Java if Rust is not suitable for the problem.
If a solution isn't present, I haven't solved it yet! I'm a moody person when it comes to competitive programming, please be patient.
## Format
Each day's puzzle answer is stored in the respective `day` folder.
Each folder has the following contents:
### main1.
The uncompiled solution for part 1 of the puzzle. Compile and run it by yourself with the compiler, don't be lazy.
### main2.
The uncompiled solution for part 2 of the puzzle. Compile and run it by yourself with the compiler, don't be lazy.
### SOLUTION1.md
Explanation about how to solve the first part of the puzzle, with complexities. If the solution doesn't have an explanation, it's unfinished.
> Link to the problem statement will be provided in this file.
### SOLUTION2.md
Explanation about how to solve the second part of the puzzle, with complexities. If the solution doesn't have an explanation, it's unfinished.
### input.in
Sample input
## Author
1. Namchee - [GitHub](https://github.com/Namchee)
## License
Just do whatever you want with these files.