Problem 2523. longest common substring : Skipped character version

Two strings are given. Find the longest common substring between them. The substring characters need not be adjacent. They, however, must appear in same order in both input strings.

Example:

str1 = 'abcdefghi';
str2 = 'zazbzczd';
output = 'abcd'

Solution Stats

55.56% Correct | 44.44% Incorrect
Last Solution submitted on Dec 02, 2025

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers45

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!