Race Result Details |
Racer | SaraĆ (sarai_vega012) |
Race Number | 11 |
Date | Fri, 6 Jun 2025 1:43:47 |
Universe | code |
Speed |
22 WPM
![]() |
Accuracy | 93% |
Rank | 12th 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) 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)
|