mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 16:47:55 +00:00
Docs: Update benchmark for deepseek/deepseek-v3.2
This commit is contained in:
12
tests/3_lis/outputs/deepseek_deepseek-v3.2.js
Normal file
12
tests/3_lis/outputs/deepseek_deepseek-v3.2.js
Normal 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
|
||||
Reference in New Issue
Block a user