Race Result Details |
Racer | Sharick_Chungara (sharick_chungara) |
Race Number | 64 |
Date | Fri, 6 Jun 2025 1:43:31 |
Universe | code |
Speed |
27 WPM
![]() |
Accuracy | 92.6% |
Rank | 8th place (out of 16) |
Opponents | alex_ramos (11th place) 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) 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)
|