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))
|
5703 Solvers
606 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
1097 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!