Luis Alberto Delgado Pinto (luis_univ)

Race #14

View Pit Stop page for race #14 by luis_univGhost race

View profile for Luis Alberto Delgado Pinto (luis_univ)

Official speed 24.62 wpm (75.06 seconds elapsed during race)
Race Start May 24, 2025 2:15:40pm UTC
Race Finish May 24, 2025 2:16:55pm UTC
Outcome No win (8 of 16)
Opponents 2. jhosmarmamani (36.42 wpm)
3. fanor (31.65 wpm)
5. noelelias (27.79 wpm)
6. souljin99 (25.88 wpm)
7. alvaro__ (25.03 wpm)
9. priscilacervantes23 (23.39 wpm)
12. cris1310 (20.96 wpm)
Accuracy 91.0%
Points 8.62
Text #10002 (Length: 154 characters)

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")