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