Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = []; y = [];
y_correct = 'ERROR';
assert(isequal(construct_string(x,y),y_correct))
y =
ERROR
|
2 | Pass |
%%
x = [-1]; y = ['a'];
y_correct = 'ERROR';
assert(isequal(construct_string(x,y),y_correct))
y =
ERROR
|
3 | Pass |
%%
x = ['a']; y = [5];
y_correct = 'ERROR';
assert(isequal(construct_string(x,y),y_correct))
y =
ERROR
|
4 | Pass |
%%
r = 10+randi(20); x = [r 1]; y = 'ab';
y_correct(1:r) = 'a'; y_correct(r+1) = 'b';
assert(isequal(construct_string(x,y),y_correct))
|
5 | Pass |
%%
x = [5 4 3 2 1];
y = '.#4a5';
y_correct = '.....####444aa5';
assert(isequal(construct_string(x,y),y_correct))
|
6 | Pass |
%%
x1 = [1 1 1 1 1 1];
y = 'banana';
assert(isequal(construct_string(x1,y),y))
|
Find common elements in matrix rows
1231 Solvers
1365 Solvers
190 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
323 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!