Skip to content

psharaev/FastScanner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Java FastScanner

Replacement for faster input than scanner

example usage:

FastScanner scanner = new FastScanner(System.in);
int x = scanner.nextInt();
String s = scanner.next();
String line = scanner.nextLine();
int[] array = scanner.nextIntArray(5);

Attention! Does not validate input data, which may lead to unexpected behavior

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages