Race Result Details |
Racer | Jhonny Condori (jhonny_ct) |
Race Number | 38 |
Date | Mon, 30 Jun 2025 1:35:35 |
Universe | code |
Speed |
25 WPM
![]() |
Accuracy | 92.6% |
Rank | 4th place (out of 5) |
Opponents | erick_vargas (5th place) nessa2 (3rd place) samiraarancibia123426 (1st place) sharick_chungara (2nd 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)
|