Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/akiradeveloper/rust-comp-snippets

Library for competitive programming in Rust.
https://github.com/akiradeveloper/rust-comp-snippets

algorithms codeforces competitive-programming rust-lang

Last synced: 12 days ago
JSON representation

Library for competitive programming in Rust.

Awesome Lists containing this project

README

        

### Parsing Input

```rust
fn solve() {
input! {
new_stdin_parser = parser,
N: usize, D: usize,
}
let mut xs = vec![];
for i in 0..N {
input! {
parser = parser,
x: [isize; D]
}
xs.push(x);
}
}
```