Race Result Details |
| Racer | Fanor (fanor) |
| Race Number | 22 |
| Date | Sat, 24 May 2025 14:16:38 |
| Universe | code |
| Speed |
32 WPM
Try to beat?
|
| Accuracy | 94.7% |
| Rank | 3rd place (out of 16) |
| Opponents | alvaro__ (7th place) cris1310 (12th place) erick0334 (1st place) jgary199 (4th place) jhony99 (10th place) jhosmarmamani (2nd place) luis_univ (8th place) noelelias (5th place) priscilacervantes23 (9th place) souljin99 (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)
|
