Race Result Details |
Racer | samiraarancibia (samiraarancibia123426) |
Race Number | 149 |
Date | Mon, 30 Jun 2025 1:35:16 |
Universe | code |
Speed |
34 WPM
![]() |
Accuracy | 94.9% |
Rank | 1st place (out of 5) |
Opponents | erick_vargas (5th place) jhonny_ct (4th place) nessa2 (3rd 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)
|