tmokenc / Advent-of-Code-2022

My solution for Advent Of Code 2022 challenges

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Advent-of-Code-2022

My solution for the advent of code 2022, written in Rust

My other AoC

Lessons Learned

Nothing yet

Error Handle

NOPE!!! unwrap() everything everywhere

Use

To run test cases written in the task

cargo test

To run all of the advent of code solutions

cargo run --release

To run only a specific day (replace {DAY_NUMBER} with the number of that day)

cargo run --release -- {DAY_NUMBER}

Note

Nothing yet

Remarkable Memories

Nothing yet

Dependencies

  • humantime - to display the running time
  • owo-colors - to print colored result in terminal
  • log - to debug code
  • fern - driver for the log module

About

My solution for Advent Of Code 2022 challenges


Languages

Language:Rust 100.0%