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")
| Game | Time | WPM | Accuracy |
|---|---|---|---|
| 225 | 2025-02-13 05:06:53 | 49.77 | 97.6% |
| 214 | 2024-12-28 14:48:28 | 51.17 | 97.6% |
| 148 | 2024-10-11 12:14:17 | 47.63 | 97.6% |
| 122 | 2024-09-19 09:45:17 | 45.54 | 96% |
| 92 | 2024-09-18 10:19:12 | 48.04 | 96.4% |
| 68 | 2024-09-06 07:07:07 | 45.60 | 95.8% |
| 35 | 2024-08-13 17:56:37 | 43.08 | 96.4% |
| 26 | 2024-07-17 12:46:58 | 39.50 | 96.2% |
| 10 | 2024-07-08 08:18:18 | 39.60 | 96% |