Race Result Details |
Racer | AlgoDev (algodev) |
Race Number | 2 |
Date | Fri, 4 Jul 2025 6:34:55 |
Universe | code |
Speed |
42 WPM
![]() |
Accuracy | 94.3% |
Rank | 4th place (out of 6) |
Opponents | director_junior (6th 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)
|