Looks fun! I made a small JavasScript snippet to solve it by pressing "Enter" at whatever speed you want ;)<p><pre><code> const observer = new MutationObserver(() => {
document.querySelector("#answer").value = eval(document.querySelector("#question").innerText.replace("=","").replace ('x',"*").replace("÷","/"));
});
observer.observe(document.querySelector("#question"), { attributes: true, childList: true, subtree: true });
</code></pre>
> You beat 100% of people.<p>> Time per question: 0.25s<p>¯\_(ツ)_/¯
Hmm.<p><pre><code> Total: 21
You beat 70.22% of people.
Time per question: 1.43s
Your slowest question was 20 ÷ 2 = 10, which took you 2.24s.
Try to be faster next time!</code></pre>