Race Result Details |
Racer | Tanushree (tanushreemr) |
Race Number | 2 |
Date | Sat, 27 May 2023 4:09:10 |
Universe | code |
Speed |
29 WPM
![]() |
Accuracy | 94.5% |
Rank | 1st place (out of 3) |
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)
|