mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-01-14 00:27:55 +00:00
Docs: Update benchmark for google/gemini-3-flash-preview
This commit is contained in:
16
tests/3_lis/outputs/google_gemini-3-flash-preview.js
Normal file
16
tests/3_lis/outputs/google_gemini-3-flash-preview.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const findLISLength = async (nums) => {
|
||||
const { bisectLeft } = await import('https://cdn.skypack.dev/d3-array@3');
|
||||
const tails = [];
|
||||
|
||||
for (const x of nums) {
|
||||
const i = bisectLeft(tails, x);
|
||||
tails[i] = x;
|
||||
}
|
||||
|
||||
return tails.length;
|
||||
};
|
||||
|
||||
|
||||
export default findLISLength;
|
||||
// Generation time: 13.472s
|
||||
// Result: PASS
|
||||
Reference in New Issue
Block a user