Challenge: Longest Palindromic Subsequence
Let's write code to find the longest palindromic subsequence of a given string.
We'll cover the following...
Problem statement
Given a string, find the length of its longest palindromic subsequence. In a palindromic subsequence, elements read the same, backward and forward.
A ...