Race Result Details |
Racer | fariz (farizzzzzz) |
Race Number | 2 |
Date | Tue, 4 Feb 2025 3:41:14 |
Universe | code |
Speed |
45 WPM
![]() |
Accuracy | 94% |
Rank | 6th place (out of 12) |
Opponents | andreasstanly (1st place) ardiwsaputra (10th place) dimass_id (7th place) fachrymaul (5th place) farisupg (4th place) hyghibran (9th place) ibrahim_musa (2nd place) mnuralif (3rd place) troides (8th 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)
|