Race Result Details |
| Racer | Isi (isidora1234) |
| Race Number | 3 |
| Date | Wed, 10 Sep 2025 22:21:46 |
| Universe | code |
| Speed |
16 WPM
Try to beat?
|
| Accuracy | 93.2% |
| Rank | 8th place (out of 8) |
| Opponents | crisitan (4th place) danaley (9th 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)
|
