Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = {'cat','meowcat','concatenation'};
y_correct = 'cat';
assert(isequal(commonS(x),y_correct))
ans =
ca
ans =
cat
|
2 | Pass |
%%
x = {'zzzyyyzzz','meowcat','concatenation'};
y_correct = '';
assert(isequal(commonS(x),y_correct))
|
3 | Pass |
%%
x = {'meowcat','owl','bowl'};
y_correct = 'ow';
assert(isequal(commonS(x),y_correct))
ans =
ow
|
4 | Pass |
%%
x = {'adoga','ssdogss','ppdogppp'};
y_correct = 'dog';
assert(isequal(commonS(x),y_correct))
ans =
do
ans =
dog
|
962 Solvers
739 Solvers
Back to basics 19 - character types
225 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
498 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!