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