Files
lynchmark/tests/3_lis/outputs/openai_gpt-5.1-codex-max.js
2025-12-05 16:05:03 +00:00

12 lines
271 B
JavaScript

async function findLISLength(a){
let {bisectLeft}=await import('https://cdn.jsdelivr.net/npm/d3-array@3')
let t=[]
for(let x of a){
let i=bisectLeft(t,x)
t[i]=x
}
return t.length
}
export default findLISLength;
// Generation time: 8.286s
// Result: FAIL