TINYLAB
TURING TEST BENCHMARK

Human vs AI Benchmark Arena 🤖

Can your organic brain spot the difference between real human creation and modern AI intelligence?

ROUND 1 / 16CODE
SCORE: 0
Inspect the sample below:
// Clean debounce utility
function debounce(fn, delay) {
  let timer;
  return function(...args) {
    clearTimeout(timer);
    timer = setTimeout(() => fn.apply(this, args), delay);
  };
}
WHO CREATED THIS?