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