An open API service indexing awesome lists of open source software.

https://github.com/topscoder/advent-of-code-2023


https://github.com/topscoder/advent-of-code-2023

Last synced: 7 months ago
JSON representation

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) |