Problem 269. Find Rotated Substring

Given a string s1, find if a rotated version of s1 is present in a second string s2.
For example, rotated version of some strings are:
"matlabcentral" => "atlabcentralm" => .. => "centralmatlab" etc.
So, if
s1 = 'matlabcentral';
s2 = 'thecentralmatlab';
then the result is true.

Solution Stats

55.16% Correct | 44.84% Incorrect
Last Solution submitted on Feb 04, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers222

Suggested Problems

Problem Tags

Community Treasure Hunt

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

Start Hunting!