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))
|
Determine whether a vector is monotonically increasing
9250 Solvers
1579 Solvers
Number of 1s in the Binary Representation of a Number
319 Solvers
Generate N equally spaced intervals between -L and L
438 Solvers
247 Solvers