This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v = [1 2];
y_correct = [1 1; 1 2];
assert(isequal(count_to_v(v),y_correct))
y =
1 1
1 2
2 1
2 2
3 1
3 2
y =
1 1
1 2
|
2 | Pass |
v = [3 2];
y_correct = [1 1; 1 2; 2 1; 2 2; 3 1; 3 2];
assert(isequal(count_to_v(v),y_correct))
y =
1 1
1 2
2 1
2 2
3 1
3 2
|
36278 Solvers
Select every other element of a vector
16227 Solvers
135 Solvers
Simple date to serial no. conversion
98 Solvers
263 Solvers