Race Result Details |
| Racer | Cristian Tacuri (cris1310) |
| Race Number | 12 |
| Date | Sat, 24 May 2025 14:17:08 |
| Universe | code |
| Speed |
21 WPM
Try to beat?
|
| Accuracy | 93.9% |
| Rank | 12th place (out of 16) |
| Opponents | alvaro__ (7th 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) 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)
|
