Crates.io | mic |
lib.rs | mic |
version | 0.1.0 |
source | src |
created_at | 2021-10-09 09:00:46.635532 |
updated_at | 2021-10-09 09:00:46.635532 |
description | Facilitates answering to competitive programming problems. |
homepage | |
repository | https://github.com/qryxip/mic |
max_upload_size | |
id | 462727 |
size | 21,760 |
Facilitates answering to competitive programming problems.
This crate is intended to be used with cargo-equip, which is a tool to bundle code into single .rs
file.
See the documentation on Docs.rs.
use mic::{answer, solve};
#[answer]
fn main() -> _ {
1
}
// 1 → println!("{}", 1)
#[answer(yn("Yes", "No"))]
fn main() -> _ {
true
}
// true → "Yes"
// → println!("{}", "Yes")
#[answer(tuple(" "))]
fn main() -> _ {
(42, "foo")
}
// (42, "foo") → "42 foo".to_owned()
// → println!("{}", "42 foo".to_owned())
#[answer(join("\n"))]
fn main() -> _ {
1..=3
}
// 1..=3 → "1\n2\n3".to_owned()
// → println!("{}", "1\n2\n3".to_owned())
#[answer(matrix(" "))]
fn main() -> _ {
vec![vec![1, 2], vec![3, 4]]
}
// vec![vec![1, 2], vec![3, 4]] → "1 2\n3 4".to_owned()
// → println!("{}", "1 2\n3 4".to_owned())
#[answer(join(" "), map(add(1)))]
fn main() -> _ {
vec![0, 2, 4] // 0-based graph node indices
}
// vec![0, 2, 4] → { impl Iterator } ([1, 3, 5])
// → "1 3 5".to_owned()
// → println!("{}", "1 3 5".to_owned())
#[solve(join(" "))]
fn solve() -> _ {
1..=3
}
// 1..=3 → "1 2 3".to_owned()
assert_eq!("1 2 3", solve());
Licensed under CC0-1.0.