Revert: Update test.js

This commit is contained in:
2025-11-13 13:03:31 -08:00
parent 86478189e8
commit ddb18f5d70

View File

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