We're a place where coders share, stay up-to-date and grow their careers.
There is much easier way to cheat this test.
Just few lines of JavaScript code:
(() => { const DELAY = 200; const set = new Set(); setInterval(() => { const word = document.querySelector('.word').innerText; const label = set.has(word) ? 'SEEN' : 'NEW'; const btn = [...document.querySelectorAll('button')].filter(btn => btn.innerText === label).pop(); btn.click(); set.add(word); }, DELAY); })();
That is a very concise solution, nice.
There is much easier way to cheat this test.
Just few lines of JavaScript code:
That is a very concise solution, nice.