Race Result Details |
Racer | nobel_saputra (nobel_saputra) |
Race Number | 5 |
Date | Thu, 21 Mar 2024 1:09:17 |
Universe | code |
Speed |
34 WPM
![]() |
Accuracy | 94.7% |
Rank | 3rd place (out of 14) |
Opponents | adiaryasuta (4th place) baskara_kungkang (5th place) deva28 (7th place) lil_widhi (8th place) novalfaiq (1st place) vinnvinn (2nd place) yogaaditya_ (6th 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)
|