Race Result Details |
Racer | Maria Betzabe Ortega Soto (mariabetzabeortega_soto) |
Race Number | 1 |
Date | Tue, 28 May 2024 19:47:26 |
Universe | code |
Speed |
27 WPM
![]() |
Accuracy | 93.5% |
Rank | 2nd place (out of 21) |
Opponents | alexbeltrantarqui (5th place) ariane111 (8th place) chavezfred (7th place) jasel_alexander_ayma10 (1st place) luis_rodrigo (3rd 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)
|