Skip to content

ofersadan85/advent_of_code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

advent_of_code

Rust Tests

This is my showcase for (eventually) solving all the problems on adventofcode.com using Rust.

Testing

All the examples can be tested to work by using

cargo test example

This will show you that my code works for the same example listed on adventofcode.com for each puzzle.

I encourage you to try and solve the problems yourself, you will have a lot of fun. But if you are looking for quick solutions to your own inputs, see the next segment.

Testing with your input

(aka Cheating)

Since every user on adventofcode.com gets his own unique input to puzzles, mine are placed in the inputs directory for each year. If you want to get the answers to your own input, simply replace the file contents for the specified puzzle.

You can then run tests with:

cd y2021
cargo test day07

This will pass if you used my input files, but will fail if you replaced them. That's good! You can see the correct answer by looking at the output.

For example, assuming you replaced the contents of y2021/inputs/day07.txt, you will see something like this output:

thread 'day07::tests::task_1' panicked at 'assertion failed: `(left == right)`
left: `123456`,
right: `356958`', src\day07.rs:84:9

This means that my expected output (for puzzle 2021, day 7, part 1) was 356958 but your correct answer is 123456 !

Thanks

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages