From 26aac5b2232ed89b53a5754e7b822693c866a2b3 Mon Sep 17 00:00:00 2001 From: nchn27 <46332369+nchn27@users.noreply.github.com> Date: Sat, 4 Jul 2020 01:29:13 -0400 Subject: [PATCH] Update IO_Speed.mdx --- content/2_General/IO_Speed.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/2_General/IO_Speed.mdx b/content/2_General/IO_Speed.mdx index 3dab9d7..f22eb93 100644 --- a/content/2_General/IO_Speed.mdx +++ b/content/2_General/IO_Speed.mdx @@ -223,7 +223,7 @@ public class roboherd_buffered_reader_string_tokenizer { Faster methods of reading input exist too - Even faster than `BufferedReader` is a custom-written Fast I/O class that uses `InputStream`. Note that this custom class is similar to the custom-written `FastIO.h` in the C++ section, as both read input through a byte buffer. - ```java import java.util.*;