...
/Challenge 2: Longest Common Substring
Challenge 2: Longest Common Substring
In this lesson, you will work on an interesting dynamic programming problem, the longest common substring.
We'll cover the following...
Problem statement
Given two strings, we want to find the length of the longest substring common in both these strings. For example, if we have two strings, "hello elf"
and "hello yourself"
, we can see two prominent ...