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))
|
1261 Solvers
829 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
260 Solvers
07 - Common functions and indexing 1
338 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!