Race Result Details |
Racer | Alex Sander Lopez Orcko (alexlopez114387) |
Race Number | 3 |
Date | Sun, 11 May 2025 0:27:18 |
Universe | code |
Speed |
34 WPM
![]() |
Accuracy | 95.4% |
Rank | 1st place (out of 12) |
Opponents | alex_ramos (8th place) alexbeltrantarqui (5th place) erick_vargas (4th place) jhonnymartinez (9th place) maria_ortega10 (3rd 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)
|