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))
|
485 Solvers
Remove from a 2-D matrix all the rows that contain at least one element less than or equal to 4
140 Solvers
965 Solvers
188 Solvers
2314 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!