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 |
x = {'cat','meowcat','concatenation'};
y_correct = 'cat';
assert(isequal(commonS(x),y_correct))
|
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))
|
4 | Pass |
x = {'adoga','ssdogss','ppdogppp'};
y_correct = 'dog';
assert(isequal(commonS(x),y_correct))
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!