Race Result Details |
| Racer | Jhonatan (jhonkk2000) |
| Race Number | 2 |
| Date | Wed, 11 Mar 2026 16:26:40 |
| Universe | code |
| Speed |
48 WPM
Try to beat?
|
| Accuracy | 97.6% |
| Rank | 2nd place (out of 7) |
| Opponents | alexvalle (7th place) anthonynoway (1st place) palteascausa (4th place) raulooo (5th place) strike_117 (3rd place) wskcoder (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)
|
