Docs: Update benchmark for openrouter/aurora-alpha

This commit is contained in:
github-actions[bot]
2026-02-09 18:45:17 +00:00
parent bb8553e8b0
commit 936cb91590
12 changed files with 245 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
const findLISLength = async arr => {
if (!Array.isArray(arr)) throw new TypeError('Input must be an array');
const { bisectLeft } = await import(
'https://cdn.jsdelivr.net/npm/d3-array@3.2.4/+esm'
);
const tails = [];
for (const v of arr) {
const i = bisectLeft(tails, v);
if (i === tails.length) tails.push(v);
else tails[i] = v;
}
return tails.length;
};
export default findLISLength;
// Generation time: 0.883s
// Result: PASS