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