Fix: Correct LIS test assertion message

This commit is contained in:
2025-11-07 13:51:48 -08:00
parent cc56811118
commit 6df4fca643

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, 4, "Test Failed: LIS length should be 5.");
assert.strictEqual(length, 4, "Test Failed: LIS length should be 4.");
}
};