Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 5;
a = [3 3 3 3 3;
3 2 2 2 3;
3 2 1 2 3;
3 2 2 2 3;
3 3 3 3 3];
assert(isequal(bullseye(n),a));
a =
3 3 3 3 3
3 2 2 2 3
3 2 2 2 3
3 2 2 2 3
3 3 3 3 3
a =
3 3 3 3 3
3 2 2 2 3
3 2 1 2 3
3 2 2 2 3
3 3 3 3 3
|
2 | Pass |
n = 7;
a = [4 4 4 4 4 4 4;
4 3 3 3 3 3 4;
4 3 2 2 2 3 4;
4 3 2 1 2 3 4;
4 3 2 2 2 3 4;
4 3 3 3 3 3 4;
4 4 4 4 4 4 4];
assert(isequal(bullseye(n),a))
a =
4 4 4 4 4 4 4
4 3 3 3 3 3 4
4 3 3 3 3 3 4
4 3 3 3 3 3 4
4 3 3 3 3 3 4
4 3 3 3 3 3 4
4 4 4 4 4 4 4
a =
4 4 4 4 4 4 4
4 3 3 3 3 3 4
4 3 2 2 2 3 4
4 3 2 2 2 3 4
4 3 2 2 2 3 4
4 3 3 3 3 3 4
4 4 4 4 4 4 4
a =
4 4 4 4 4 4 4
4 3 3 3 3 3 4
4 3 2 2 2 3 4
4 3 2 1 2 3 4
4 3 2 2 2 3 4
4 3 3 3 3 3 4
4 4 4 4 4 4 4
|
Return a list sorted by number of occurrences
1504 Solvers
3601 Solvers
Set the array elements whose value is 13 to 0
935 Solvers
347 Solvers
465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!