Race Result Details |
Racer | AlexSanderLopez (alexsanderlopez) |
Race Number | 1 |
Date | Fri, 7 Jun 2024 2:39:37 |
Universe | code |
Speed |
24 WPM
![]() |
Accuracy | 94% |
Rank | 5th place (out of 20) |
Opponents | erickvargas (4th place) jasel_alexander_10 (1st place) luis_rodrigo (3rd place) mariabetzabeortega_soto (2nd place) |
Text typed:
/** Loop waiting for a connection and a valid command */ while (true) { Socket socket = null; InputStream stream = null; try { socket = serverSocket.accept(); socket.setSoTimeout(10 * 1000); stream = socket.getInputStream(); } catch (AccessControlException ace) { log.warn("StandardServer.accept security exception: " + ace.getMessage(), ace); continue; } catch (IOException e) { log.error("StandardServer.await: accept: ", e); System.exit(1); }
— (software)
by Apache Project
(see stats)
|