Race Result Details |
| Racer | kasep (widot123) |
| Race Number | 3 |
| Date | Wed, 15 Jan 2025 21:16:30 |
| Universe | code |
| Speed |
20 WPM
Try to beat?
|
| Accuracy | 85.7% |
| Rank | 6th place (out of 6) |
| Opponents | gorengikan (5th place) huheho_1 (1st place) khew123 (4th place) semauracing (2nd 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)
|
