Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/akiradeveloper/rust-comp-snippets
- Owner: akiradeveloper
- Created: 2019-01-22T15:14:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-18T04:59:45.000Z (about 3 years ago)
- Last Synced: 2024-08-01T17:39:31.495Z (3 months ago)
- Topics: algorithms, codeforces, competitive-programming, rust-lang
- Language: Rust
- Homepage:
- Size: 600 KB
- Stars: 16
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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);
}
}
```