Race Result Details |
Racer | Luis Rodrigo Ramos Martinez (luis_rodrigo) |
Race Number | 1 |
Date | Tue, 28 May 2024 19:47:33 |
Universe | code |
Speed |
24 WPM
![]() |
Accuracy | 90.5% |
Rank | 3rd place (out of 21) |
Opponents | alexbeltrantarqui (5th place) ariane111 (8th place) chavezfred (7th place) jasel_alexander_ayma10 (1st place) mariabetzabeortega_soto (2nd place) rick5664 (6th place) sharick_chungara (4th 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)
|