Docs: Update benchmark for openai/gpt-5.3-codex

This commit is contained in:
github-actions[bot]
2026-02-24 23:25:47 +00:00
parent e913b42a5d
commit dce9c2a746
12 changed files with 422 additions and 27 deletions

View File

@@ -1,4 +1,13 @@
async function findLISLength(arr) {
if (!Array.isArray(arr)) throw new TypeError("Expected an array of numbers");
const { bisectLeft } = await import("https://cdn.jsdelivr.net/npm/d3-array@3/+esm");
const tails = [];
for (const n of arr) {
if (typeof n !== "number" || Number.isNaN(n)) throw new TypeError("Array must contain only valid numbers");
tails[bisectLeft(tails, n)] = n;
}
return tails.length;
}
export default findLISLength;
// Generation time: 0.821s
// Result: FAIL
// Generation time: 7.363s
// Result: PASS