Challenge: Longest Common Subsequence
Explore how to find the longest common subsequence between two strings by applying dynamic programming concepts. Learn to distinguish subsequences from substrings and develop an algorithm that returns the length of the longest common ordered subsequence. Build from recursion to dynamic programming solutions while practicing problem-solving skills.
We'll cover the following...
We'll cover the following...
Problem statement
Given ...