Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 5;
y_correct = [1 0 1 0 1];
assert(isequal(alternating10(n),y_correct))
a =
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
y =
0 0 0 0 0
y =
1 0 1 0 1
|
2 | Pass |
n = 8;
y_correct = [1 0 1 0 1 0 1 0];
assert(isequal(alternating10(n),y_correct))
a =
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0
y =
0 0 0 0 0 0 0 0
y =
1 0 1 0 1 0 1 0
|
Who knows the last digit of pi?
557 Solvers
Sum of diagonal of a square matrix
1327 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
Magic is simple (for beginners)
2757 Solvers
549 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!