Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(union_jack(x),y_correct))
ans =
1
|
2 | Pass |
x = 3;
y_correct = ones(3);
assert(isequal(union_jack(x),y_correct))
ans =
1 1 1
1 1 1
1 1 1
|
3 | Pass |
x = 5;
y_correct = [1,0,1,0,1;
0,1,1,1,0;
1,1,1,1,1;
0,1,1,1,0;
1,0,1,0,1];
assert(isequal(union_jack(x),y_correct))
ans =
1 0 1 0 1
0 1 1 1 0
1 1 1 1 1
0 1 1 1 0
1 0 1 0 1
|
4 | Pass |
x = 7;
y_correct = [1,0,0,1,0,0,1;
0,1,0,1,0,1,0;
0,0,1,1,1,0,0;
1,1,1,1,1,1,1;
0,0,1,1,1,0,0;
0,1,0,1,0,1,0;
1,0,0,1,0,0,1];
assert(isequal(union_jack(x),y_correct))
ans =
1 0 0 1 0 0 1
0 1 0 1 0 1 0
0 0 1 1 1 0 0
1 1 1 1 1 1 1
0 0 1 1 1 0 0
0 1 0 1 0 1 0
1 0 0 1 0 0 1
|
5 | Pass |
x = 9;
y_correct = [1,0,0,0,1,0,0,0,1;
0,1,0,0,1,0,0,1,0;
0,0,1,0,1,0,1,0,0;
0,0,0,1,1,1,0,0,0;
1,1,1,1,1,1,1,1,1;
0,0,0,1,1,1,0,0,0;
0,0,1,0,1,0,1,0,0;
0,1,0,0,1,0,0,1,0;
1,0,0,0,1,0,0,0,1];
assert(isequal(union_jack(x),y_correct))
ans =
1 0 0 0 1 0 0 0 1
0 1 0 0 1 0 0 1 0
0 0 1 0 1 0 1 0 0
0 0 0 1 1 1 0 0 0
1 1 1 1 1 1 1 1 1
0 0 0 1 1 1 0 0 0
0 0 1 0 1 0 1 0 0
0 1 0 0 1 0 0 1 0
1 0 0 0 1 0 0 0 1
|
4325 Solvers
1339 Solvers
248 Solvers
88 Solvers
133 Solvers