Race Result Details |
Racer | alexVladimirQuecaña (alex_ramos) |
Race Number | 62 |
Date | Fri, 6 Jun 2025 1:43:38 |
Universe | code |
Speed |
25 WPM
![]() |
Accuracy | 93.5% |
Rank | 11th place (out of 16) |
Opponents | ariane_salazar (4th place) beltran_tarqui (3rd place) jasssel (2nd place) jhulmab (13th place) liz_mariela (7th place) maria_ortega10 (1st place) pedro_serrudo (10th place) samiraarancibia123426 (6th place) sarai_vega012 (12th place) sharick_chungara (8th place) tocsky (9th place) yarot123 (5th 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)
|