3个不稳定版本
0.2.0 | 2023年1月12日 |
---|---|
0.1.1 | 2023年1月11日 |
0.1.0 | 2023年1月11日 |
#35 在 #year
69 每月下载量
在 aoc-cli 中使用
32KB
771 代码行
aoc-client
Advent of Code库 🎄
aoc-client
是一个用于 Advent of Code 的 Rust库。它用于构建 aoc-cli 命令行工具,但也可集成到其他项目中。
用法 ⛄️
将以下依赖项添加到您的Rust项目中(在 Cargo.toml
)
[dependencies]
aoc-client = "0.1"
创建一个 AocClient
实例并调用其方法
use aoc_client::{AocClient, AocResult};
fn main() -> AocResult<()> {
let client = AocClient::builder()
.session_cookie_from_default_locations()?
.year(2022)?
.day(1)?
.build()?;
let _input: String = client.get_input()?;
// Solve part 1 using your input and then submit your answer
let answer_part1 = 1234;
client.submit_answer(1, answer_part1)?;
// Solve part 2 using your input and then submit your answer
let answer_part2 = 5678;
client.submit_answer(2, answer_part2)?;
Ok(())
}
贡献 🦌
欢迎反馈和pull requests。请参阅 CONTRIBUTING 以获取指南和想法。
支持Advent of Code 🎁
Advent of Code是由 Eric Wastl 创建并由志愿者维护的免费在线 Advent日历,包含小型编程谜题。请考虑 支持他们的工作。
依赖项
~10–23MB
~367K SLoC