Race Result Details |
Racer | Junior (director_junior) |
Race Number | 5 |
Date | Fri, 4 Jul 2025 6:35:08 |
Universe | code |
Speed |
32 WPM
![]() |
Accuracy | 94.2% |
Rank | 6th place (out of 6) |
Opponents | algodev (4th place) plzbugmenot (1st place) zoonear (5th 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)
|