Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y = 1;
assert(isequal(row_to_col(x),y))
|
2 | Pass |
%%
x = [1 2 3];
y = [1;2;3];
assert(isequal(row_to_col(x),y))
|
3 | Pass |
%%
x = [4 5 6 7 8 9];
y = [4;5;6;7;8;9];
assert(isequal(row_to_col(x),y))
|
Return the largest number that is adjacent to a zero
3108 Solvers
948 Solvers
Create matrix of replicated elements
265 Solvers
192 Solvers
263 Solvers