Race Result Details |
Racer | michael_rains (michael_rains) |
Race Number | 2 |
Date | Tue, 21 May 2024 2:38:23 |
Universe | code |
Speed |
45 WPM
![]() |
Accuracy | 95.4% |
Rank | 6th place (out of 7) |
Opponents | big_sister_a (2nd place) shaun_0421 (1st place) sinbard (3rd place) sortoite (7th place) trickyrlee (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)
|