Files
lynchmark/tests/3_lis/outputs/google_gemini-3.1-pro-preview.js
2026-02-19 16:23:35 +00:00

9 lines
265 B
JavaScript

export const findLISLength = async a => {
const { bisectLeft } = await import("https://esm.sh/d3-array");
const s = [];
for (const x of a) s[bisectLeft(s, x)] = x;
return s.length;
};
export default findLISLength;
// Generation time: 15.537s
// Result: PASS