Race Result Details |
| Racer | Cristian FA (crisitan) |
| Race Number | 5 |
| Date | Wed, 10 Sep 2025 22:20:55 |
| Universe | code |
| Speed |
28 WPM
Try to beat?
|
| Accuracy | 93% |
| Rank | 4th place (out of 8) |
| Opponents | danaley (9th place) isidora1234 (8th place) iverjoel (6th place) mismar12 (3rd place) rogerflores (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)
|
