Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('diagonalPattern.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
|
2 | Pass |
n = 1;
mat_correct = 0;
assert(isequal(diagonalPattern(n),mat_correct))
|
3 | Pass |
n = -1;
mat_correct = [];
assert(isequal(diagonalPattern(n),mat_correct))
|
4 | Pass |
n = 1.5;
mat_correct = [];
assert(isequal(diagonalPattern(n),mat_correct))
|
5 | Pass |
n = 4;
mat_correct = [0 1 2 3
1 0 1 2
2 1 0 1
3 2 1 0];
assert(isequal(diagonalPattern(n),mat_correct))
|
6 | Pass |
n = 5;
mat_correct = [0 1 2 3 4
1 0 1 2 3
2 1 0 1 2
3 2 1 0 1
4 3 2 1 0];
assert(isequal(diagonalPattern(n),mat_correct))
|
Remove any row in which a NaN appears
6827 Solvers
495 Solvers
3065 Solvers
Who has power to do everything in this world?
318 Solvers
1160 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!