4 个版本
使用旧的 Rust 2015
0.2.2 | 2018年12月10日 |
---|---|
0.2.0 | 2018年12月3日 |
0.1.1 | 2018年12月2日 |
0.1.0 | 2018年12月2日 |
#20 in #示例
85KB
625 行
Advent of Code
Advent of Code 是测试 Rust 迭代器和相关特性的优秀示例。此存储库包含了我迄今为止尝试的谜题的解决方案。库文档(在 docs.rs/advent)是浏览代码的方便方式。
$ cargo -q test 2017::day3 # to run a specific puzzle
running 2 tests
test y2017::day3::examples ... ok
test y2017::day3::solution ... ok
$ cargo test --release # to run all puzzles
lib.rs
:
Advent of Code
advent
是我收集的每年12月发布的 Advent of Code 谜题的解决方案集合。这些解决方案以模块中的函数(例如下面的 y2018
)形式实现,可以使用 cargo test
在适当的范围选择下执行。
$ cargo test 2018::day1
running 2 tests
test y2018::day1::examples ... ok
test y2018::day1::solution ... ok