Docs: Update benchmark for deepseek/deepseek-v3.2

This commit is contained in:
github-actions[bot]
2025-12-01 15:02:03 +00:00
parent c8893a805f
commit 0b47c76f63
11 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
async function findLISLength(arr) {
const d3 = await import('https://esm.sh/d3-array@3.2.4');
const tails = [];
for (const num of arr) {
const i = d3.bisectLeft(tails, num);
tails[i] = num;
}
return tails.length;
}
export default findLISLength;
// Generation time: 3.865s
// Result: PASS