This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s1 = 'matlabcentral';
s2 = 'thecentralmatlab';
y_correct = true;
assert(isequal(isRotatedStrPresent(s1,s2),y_correct))
|
2 | Pass |
s1 = 'altabcentralm';
s2 = 'thecentralmatlab';
y_correct = false;
assert(isequal(isRotatedStrPresent(s1,s2),y_correct))
|
3 | Pass |
s1 = 'cooldrinks';
s2 = 'somecoolerdrinks';
y_correct = false;
assert(isequal(isRotatedStrPresent(s1,s2),y_correct))
|
4 | Pass |
s1 = 'controlsystem';
s2 = 'asystemcontrol';
y_correct = true;
assert(isequal(isRotatedStrPresent(s1,s2),y_correct))
|
5 | Pass |
s1 = 'controlsystem';
s2 = 'contorlsystem';
y_correct = false;
assert(isequal(isRotatedStrPresent(s1,s2),y_correct))
|
54371 Solvers
3117 Solvers
404 Solvers
Vectorize the digits of an Integer
269 Solvers
Determine if input is a perfect number
145 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!