Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = [1 1 1;0 1 0;1 1 1];
assert(isequal(Z(n),y_correct))
a =
0 0 0
0 0 0
0 0 0
|
2 | Pass |
n = 4;
y_correct = [1 1 1 1;0 0 1 0; 0 1 0 0; 1 1 1 1];
assert(isequal(Z(n),y_correct))
a =
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
|
3 | Pass |
n = 5;
y_correct = [1 1 1 1 1; 0 0 0 1 0; 0 0 1 0 0; 0 1 0 0 0; 1 1 1 1 1];
assert(isequal(Z(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
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
895 Solvers
340 Solvers
320 Solvers
Return fibonacci sequence do not use loop and condition
218 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!