goorm edu rs kit, easy helper kit for rust code test environment.
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.
Usage Example
use goorm_helper;
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.