Race Result Details |
| Racer | loco (khew123) |
| Race Number | 5 |
| Date | Wed, 15 Jan 2025 21:16:21 |
| Universe | code |
| Speed |
22 WPM
Try to beat?
|
| Accuracy | 91.7% |
| Rank | 4th place (out of 6) |
| Opponents | gorengikan (5th place) huheho_1 (1st place) semauracing (2nd place) widot123 (6th place) |
Text typed:
|
import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py")
— (software)
by Fredrik Lundh
(see stats)
|
