1
0
Fork
You've already forked aoc
0
My solutions for advent of code, written in rust
  • Rust 100%
2024年12月07日 17:05:54 +01:00
.github/workflows Can't use rust remote, because code won't compile 2024年06月08日 17:13:07 +02:00
2023 feat: added start of part one 2024年11月15日 17:57:32 +01:00
2024 chore: boilerplate day 5 2024年12月07日 17:05:54 +01:00
docs docs: added part one description 2024年10月17日 14:47:14 +02:00
.gitignore Added .zed to gitignore 2024年06月14日 18:35:04 +02:00
LICENSE Added GPL-3.0 license 2023年11月27日 18:29:46 +01:00
README.md Added some extra instructions to readme 2024年06月08日 10:22:38 +02:00

Advent of code

I am trying to learn rust by doing some advent of code projects, which challenge you to solve simple and complex problems in any programming language. Check advent of code out here. This repo also is a small training into documenting all my thought processes and code, so you can understand it later, even though you've never read it. This documentation is available on my site

Info

I create a new rust project for every day and each year is organized in a subfolder. If you just want to solve a certain problem, put an input file for a certain day into /<year>/inputs/<day_number>.txt. To run the day, cd into the day folder and just run cargo run. Make sure your day file is formatted with 01 if it is a single digit day.