https://github.com/laugharne/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.
https://github.com/laugharne/advent_of_code_2023
algorithm-challenges algorithms algorithms-and-data-structures rust rust-lang
Last synced: 8 months ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/laugharne/advent_of_code_2023
- Owner: Laugharne
- Created: 2023-11-24T09:40:43.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-04T14:27:33.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T05:41:47.090Z (10 months ago)
- Topics: algorithm-challenges, algorithms, algorithms-and-data-structures, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 57.6 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.
If you'd like to support Advent of Code, you can do so indirectly by helping to [Share on Twitter Mastodon] it with others, or directly via PayPal or Coinbase.
[**Advent of Code 2023**](https://adventofcode.com/2023)
For each day, you can run/build part ONE and part TWO, like this :
```bash
cargo r --bin part1
cargo r --bin part2
```
You can also proceed to test on each project (day) directory :
```bash
cargo t
```