Race Result Details |
Racer | Fátima (nessa2) |
Race Number | 43 |
Date | Mon, 30 Jun 2025 1:35:32 |
Universe | code |
Speed |
26 WPM
![]() |
Accuracy | 96.5% |
Rank | 3rd place (out of 5) |
Opponents | erick_vargas (5th place) jhonny_ct (4th 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)
|