https://github.com/topscoder/advent-of-code-2023
https://github.com/topscoder/advent-of-code-2023
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/topscoder/advent-of-code-2023
- Owner: topscoder
- Created: 2023-12-14T07:45:47.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-18T17:48:43.000Z (about 2 years ago)
- Last Synced: 2025-01-12T19:36:15.456Z (about 1 year ago)
- Language: Python
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2023
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as interview prep, company training, university coursework, practice problems, a speed contest, or to challenge each other.
You don't need a computer science background to participate - just a little programming knowledge and some problem solving skills will get you pretty far. Nor do you need a fancy computer; every problem has a solution that completes in at most 15 seconds on ten-year-old hardware.
https://adventofcode.com/
## Progress
| Day | Task | Solution |
|--|--|--|
| Day 1: Trebuchet?! | [Task](https://adventofcode.com/2023/day/1) | [Solution](./day1/solve.py) |
| Day 1: Part Two | [Task](https://adventofcode.com/2023/day/1) | [Solution](./day1/solve2.py) |
| Day 2: Cube Conundrum | [Task](https://adventofcode.com/2023/day/2) | [Solution](./day2/solve.py) |
| Day 2: Part Two | [Task](https://adventofcode.com/2023/day/2) | [Solution](./day2/solve2.py) |
| Day 3: Gear Ratios | [Task](https://adventofcode.com/2023/day/3) | [Solution](./day3/solve.py) |
| Day 3: Part Two | [Task](https://adventofcode.com/2023/day/3#part2) | [Solution](./day3/solve2.py) |