Update test.js

This commit is contained in:
2025-10-14 05:26:34 -07:00
committed by GitHub
parent e856e5d6ef
commit 9fed40296c

View File

@@ -11,6 +11,6 @@ export default {
};
const nums = [10, 9, 2, 5, 3, 7, 101, 18, 4, 6];
const length = await findLISLength(nums);
assert.strictEqual(length, 5, "Test Failed: LIS length should be 5.");
assert.strictEqual(length, 4, "Test Failed: LIS length should be 5.");
}
};