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))
|
Remove any row in which a NaN appears
6827 Solvers
546 Solvers
Getting the row and column location from a matrix
236 Solvers
2538 Solvers
190 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!