Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 0; 1 1];
y_correct = true;
assert(isequal(fnt(x),y_correct))
|
2 | Pass |
x = [1 0 0; 1 1 0; 1 2 1];
y_correct = true;
assert(isequal(fnt(x),y_correct))
|
3 | Pass |
x = [1 0 0 0; 1 1 0 0; 1 2 1 0; 1 3 3 1];
y_correct = true;
assert(isequal(fnt(x),y_correct))
|
4 | Pass |
x = [1 0 1; 1 1 0; 1 2 1];
y_correct = false;
assert(isequal(fnt(x),y_correct))
|
5 | Pass |
x = zeros(5);
y_correct = false;
assert(isequal(fnt(x),y_correct))
|
Remove all the words that end with "ain"
1292 Solvers
Count from 0 to N^M in base N.
220 Solvers
Similar Triangles - find the height of the tree
203 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
724 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!