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 |
x = [1];
y_correct = [1 0];
assert(isequal(your_fcn_name(x),y_correct))
y =
1 0
|
2 | Pass |
x = [1 2 3 4 5 6];
y_correct =[ 1 0 2 0 3 0 4 0 5 0 6 0];
assert(isequal(your_fcn_name(x),y_correct))
y =
1 0
y =
1 0 2 0
y =
1 0 2 0 3 0
y =
1 0 2 0 3 0 4 0
y =
1 0 2 0 3 0 4 0 5 0
y =
1 0 2 0 3 0 4 0 5 0 6 0
|
3 | Pass |
x = 1:10;
y_correct =[ 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0];
assert(isequal(your_fcn_name(x),y_correct))
y =
1 0
y =
1 0 2 0
y =
1 0 2 0 3 0
y =
1 0 2 0 3 0 4 0
y =
1 0 2 0 3 0 4 0 5 0
y =
1 0 2 0 3 0 4 0 5 0 6 0
y =
1 0 2 0 3 0 4 0 5 0 6 0 7 0
y =
1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0
y =
Columns 1 through 16
1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0
Columns 17 through 18
9 0
y =
Columns 1 through 16
1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0
Columns 17 through 20
9 0 10 0
|
594 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1491 Solvers
516 Solvers
387 Solvers
147 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!