Race Result Details |
Racer | Maria Betzabe Ortega Soto (maria_ortega10) |
Race Number | 5 |
Date | Sun, 11 May 2025 0:27:29 |
Universe | code |
Speed |
28 WPM
![]() |
Accuracy | 93.3% |
Rank | 3rd place (out of 12) |
Opponents | alex_ramos (8th place) alexbeltrantarqui (5th place) alexlopez114387 (1st place) erick_vargas (4th place) jhonnymartinez (9th place) sharick_chungara (6th 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)
|