Race Result Details |
Racer | Hein Kyaw Soe (heinkyawsoe) |
Race Number | 1 |
Date | Fri, 17 Oct 2025 8:32:54 |
Universe | code |
Speed |
54 WPM
![]() |
Accuracy | 95.2% |
Rank | 6th place (out of 8) |
Opponents | cutecup (8th place) lukiekks (3rd place) ryecookiecrumbs (2nd place) sjzdylan (1st place) sutolimin_ (5th place) xlium (4th place) yulhomie (7th 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)
|