fix: update test label to reflect new function results

This commit is contained in:
shola 2024-08-22 00:11:38 -07:00
parent fcad8fa25b
commit 476a47e05e

View File

@ -1,7 +1,7 @@
import dpLongestIncreasingSubsequence from '../dpLongestIncreasingSubsequence';
describe('dpLongestIncreasingSubsequence', () => {
it('should find longest increasing subsequence length', () => {
it('should find longest increasing subsequence', () => {
expect(dpLongestIncreasingSubsequence([
9, 8, 7, 6, 5, 4, 3, 2, 1, 0,
])).toStrictEqual([9]);