Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x1 = 'a';
x2= 'b';
y_correct = 'ab';
assert(isequal(concatstrings(x1,x2),y_correct))
|
2 | Pass |
x1 = 'a';
x2= 'b';
x3= 'c';
y_correct = 'abc';
assert(isequal(concatstrings(x1,x2,x3),y_correct))
|
3 | Pass |
x1 = 'my';
x2= ' ';
x3= 'holiday';
x4= ' ';
x5= 'is';
x6= ' almost over!';
y_correct = 'my holiday is almost over!';
assert(isequal(concatstrings(x1,x2,x3,x4,x5,x6),y_correct))
|
4 | Pass |
assert(isempty(concatstrings()))
|
2240 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
Output any real number that is neither positive nor negative
316 Solvers
185 Solvers
Celsius to Fahrenheit converter
389 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!