Alex (xithes)

Race #1

View Pit Stop page for race #1 by xithesGhost race

View profile for Alex (xithes)

Official speed 41.53 wpm (44.50 seconds elapsed during race)
Race Start April 9, 2018 11:39:10pm UTC
Race Finish April 9, 2018 11:39:54pm UTC
Outcome Win (1 of 4)
Opponents 2. helpplz (36.92 wpm)
3. type_is_lyfe (35.55 wpm)
4. gautamibuddha (33.34 wpm)
Accuracy 93.0%
Points 14.54
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")