{"ScriptPreparationCode":"const f1 = (a, b) =\u003E Math.hypot(...a.map((x, i) =\u003E x - b[i]));\r\nconst f2 = (a, b) =\u003E Math.sqrt(a.reduce((sum, x, i) =\u003E {\r\n const delta = x - b[i];\r\n return sum \u002B delta * delta;\r\n}, 0));","TestCases":[{"Name":"Rest","Code":"const r1 = f1([6, 7, 8, 9, 0], [0, 1, 2, 3, 4, 5]);","IsDeferred":false},{"Name":"Array","Code":"const r2 = f2([6, 7, 8, 9, 0], [0, 1, 2, 3, 4, 5]);","IsDeferred":false}],"UseTinyBench":false}