Race Result Details |
Racer | Ariane Salazar (ariane111) |
Race Number | 1 |
Date | Tue, 28 May 2024 19:47:45 |
Universe | code |
Speed |
21 WPM
![]() |
Accuracy | 91.8% |
Rank | 8th place (out of 21) |
Opponents | alexbeltrantarqui (5th place) chavezfred (7th place) jasel_alexander_ayma10 (1st place) luis_rodrigo (3rd 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)
|