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 |
%%
n=4
x=[2 1 2 3 4 5 -3 4 -1 2 2 2]
y_correct = [2 0 0 0 1 0 0 0 2 0 0 0 3 0 0 0 4 0 0 0 5 0 0 0 -3 0 0 0 4 0 0 0 -1 0 0 0 2 0 0 0 2 0 0 0 2];
assert(isequal(time_expansion(x,n),y_correct))
n =
4
x =
2 1 2 3 4 5 -3 4 -1 2 2 2
|
2 | Pass |
%%
n=1
x=[2 1 2 3 4 5 -3 4 -1 2 2 2]
y_correct=x;
assert(isequal(time_expansion(x,n),y_correct))
n =
1
x =
2 1 2 3 4 5 -3 4 -1 2 2 2
|
3 | Pass |
%%
n=5
x=[2 1 2 3 4]
y_correct=[2 0 0 0 0 1 0 0 0 0 2 0 0 0 0 3 0 0 0 0 4];
assert(isequal(time_expansion(x,n),y_correct))
n =
5
x =
2 1 2 3 4
|
4 | Pass |
%%
|
846 Solvers
340 Solvers
Back to basics 4 - Search Path
280 Solvers
Permute diagonal and antidiagonal
179 Solvers
205 Solvers