From 270c3cc7f38c54a478ca0769d9552375bf5993df Mon Sep 17 00:00:00 2001 From: nchn27 <46332369+nchn27@users.noreply.github.com> Date: Sat, 4 Jul 2020 01:30:31 -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 f22eb93..2895f8c 100644 --- a/content/2_General/IO_Speed.mdx +++ b/content/2_General/IO_Speed.mdx @@ -155,7 +155,7 @@ A common alternative to reading input for programming contests is `BufferedReade Reading input is more complicated when multiple, space-separated values are placed in a single line. In order to individually read the values in each line, the programmer usually uses the `.split()` method in `String` or the `.nextToken()` in `StringTokenizer`. Notice that `StringTokenizer` for splitting strings is slightly faster than `.split()`. -*Reading input with `BufferedReader` and `.split()`:* +*Reading input with `BufferedReader` and `.split()`* ```java