Race Result Details |
Racer | Erick_Vargas (erick_vargas) |
Race Number | 92 |
Date | Mon, 30 Jun 2025 1:35:36 |
Universe | code |
Speed |
25 WPM
![]() |
Accuracy | 91.7% |
Rank | 5th place (out of 5) |
Opponents | jhonny_ct (4th 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)
|