Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3];
y_correct = '123';
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [7 8 8 0 3];
y_correct = '78803';
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
3 | Pass |
x = [8 4];
y_correct = '84';
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
4 | Pass |
x = [1 2 1 1 8 5];
y_correct = '121185';
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
5 | Pass |
x = [1 8 6 3];
y_correct = '1863';
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
6 | Pass |
x = [4 0 2 1];
y_correct = '4021';
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
7 | Pass |
x = [2 4];
y_correct = '24';
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
8 | Pass |
x = 9;
y_correct = '9';
y = your_fcn_name(x);
assert(isequal(y_correct,y))
|
Return the largest number that is adjacent to a zero
3751 Solvers
Reverse the elements of an array
687 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
273 Solvers
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!