public class Solution { public int LongestPalindromeSubseq(string s) { int[,] dp = new int[s.Length, s.Length]; for (int i = s.Length - 1; i >= 0; i--) { dp[i, i] = 1; for (int j = i + 1; j < s.Length; j++) { if (s[i] == s[j]) { dp[i, j] = dp[i + 1, j - 1] + 2; } else { dp[i, j] = Math.Max(dp[i + 1, j], dp[i, j - 1]); } } } return dp[0, s.Length - 1]; } }
https://leetcode.com/problems/longest-palindromic-subsequence/#/description