IInferHavenininferhaven.hashnode.dev·Aug 10 · 7 min readThe bug your test cannot seeHere is a function. It has one job: give me the three highest scores. function topThree(scores) { scores.sort((a, b) => b - a) return scores.slice(0, 3) } It works. topThree([72, 98, 64, 91, 87, 00
IInferHavenininferhaven.hashnode.dev·Aug 1 · 10 min readHow I built a tutor that refuses to write your codeTwo weeks ago I launched CodeTrain, an AI tutor with one rule: it never writes your code. You type every line, it plans the steps, runs what you wrote, and grades it. People probably assume the rule i00