Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(4)
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
x =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
|
2 | Pass |
x = zeros(7)
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
x =
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
|
3 | Pass |
x = [5 3 0;7 12 -1; 100 5 9]
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
x =
5 3 0
7 12 -1
100 5 9
|
4 | Pass |
x = 0:10
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
x =
0 1 2 3 4 5 6 7 8 9 10
|
Back to basics 23 - Triangular matrix
634 Solvers
Cell Counting: How Many Draws?
581 Solvers
284 Solvers
Calculate distance travelled when given radius and rotations
182 Solvers
116 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!