Skip to content

Commit

Permalink
Update LongestPalindromicSubsequence.test.js
Browse files Browse the repository at this point in the history
  • Loading branch information
pomkarnath98 authored Oct 4, 2021
1 parent 877ce46 commit 199d263
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { longestPalindromeSubsequence } from '../LongestPalindromicSubsequence'

describe('LongestPalindromicSubsequence', () => {
it('expects to return 0 as longest pallindromic subsequence', () => {
it('expects to return 1 as longest pallindromic subsequence', () => {
expect(longestPalindromeSubsequence('abcdefgh')).toBe(1)
})

Expand Down

0 comments on commit 199d263

Please sign in to comment.