Update IO_Speed.mdx

This commit is contained in:
nchn27 2020-07-04 01:30:31 -04:00 committed by GitHub
parent 26aac5b223
commit 270c3cc7f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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()`*
<spoiler title="1209ms">
```java