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))
|
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))
|
103 Solvers
Find the largest value in the 3D matrix
897 Solvers
357 Solvers
133 Solvers
Try 1.5.4: Celsius to Fahrenheit
486 Solvers