mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-10 11:09:43 +08:00
fix: update test label to reflect new function results
This commit is contained in:
parent
fcad8fa25b
commit
476a47e05e
@ -1,7 +1,7 @@
|
|||||||
import dpLongestIncreasingSubsequence from '../dpLongestIncreasingSubsequence';
|
import dpLongestIncreasingSubsequence from '../dpLongestIncreasingSubsequence';
|
||||||
|
|
||||||
describe('dpLongestIncreasingSubsequence', () => {
|
describe('dpLongestIncreasingSubsequence', () => {
|
||||||
it('should find longest increasing subsequence length', () => {
|
it('should find longest increasing subsequence', () => {
|
||||||
expect(dpLongestIncreasingSubsequence([
|
expect(dpLongestIncreasingSubsequence([
|
||||||
9, 8, 7, 6, 5, 4, 3, 2, 1, 0,
|
9, 8, 7, 6, 5, 4, 3, 2, 1, 0,
|
||||||
])).toStrictEqual([9]);
|
])).toStrictEqual([9]);
|
||||||
|
Loading…
Reference in New Issue
Block a user