The code test (a.k.a competitive programming) with rust has a problem that it is sometimes difficult to process the integer from standard input. This library solves such situations comfortably.
```rs use goormedurskit::goormhelper;
fn main() {
// Input Example
// '8\n'
let len: usize = goormhelper::getint();
// Input Example
// '10 20 30 40 50 60 70 80\n' or
// '10 20 30 40 50 60 70 80 \n' or
// '10 20 30 40 50 60 70 80 \n'
let list: Vec
assert_eq!(len, 8);
assert_eq!(&[10, 20, 30, 40, 50, 60, 70, 80], &list[..]);
solve(&list);
} ```
goorm_helper::get_int()
Get single integer from one line stdio. * If system architecture is 32bit, cannot parse number bigger than i32::MAX or smaller than i32::MIN. * If system architecture is 64bit, cannot parse number bigger than i64::MAX or smaller than i64::MIN.
goorm_helper::get_vec_int(len: usize)
Get vectorized multiple integers with fixed length from one line stdio. * Must contain integer count in one line. * Experimental support, that super huge one line string that is bigger than 8KB buffer.