Race Result Details |
Racer | aadithebest (aadithebeast) |
Race Number | 242 |
Date | Thu, 18 Sep 2025 11:23:10 |
Universe | code |
Speed |
42 WPM
![]() |
Accuracy | 94.7% |
Rank | 3rd 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)
|