Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x1 = 'a';
x2= 'b';
y_correct = 'ab';
assert(isequal(concatstrings(x1,x2),y_correct))
ans =
ab
|
2 | Pass |
x1 = 'a';
x2= 'b';
x3= 'c';
y_correct = 'abc';
assert(isequal(concatstrings(x1,x2,x3),y_correct))
ans =
abc
|
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))
ans =
my holiday is almost over!
|
4 | Pass |
assert(isempty(concatstrings()))
ans =
[]
|
Is my wife right? Now with even more wrong husband
1241 Solvers
Back to basics 11 - Max Integer
678 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
546 Solvers
321 Solvers
274 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!