This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = false;
assert(isequal(isnilpotent(x),y_correct))
|
2 | Pass |
%%
x = gallery('chebspec',5,0);
y_correct = true;
assert(isequal(isnilpotent(x),y_correct))
|
3 | Pass |
%%
x = gallery('chebspec',3,0);
y_correct = true;
assert(isequal(isnilpotent(x),y_correct))
|
4 | Pass |
%%
x = [1 0 0;0 2 0; 0 0 -3];
y_correct = false;
assert(isequal(isnilpotent(x),y_correct))
|
5 | Pass |
%%
x = [6 -9; 4 -6];
y_correct = true;
assert(isequal(isnilpotent(x),y_correct))
|
6 | Pass |
%%
x = rand(50);
y_correct = false;
assert(isequal(isnilpotent(x),y_correct))
|
14354 Solvers
Find the numeric mean of the prime numbers in a matrix.
5911 Solvers
3418 Solvers
Find the alphabetic word product
1998 Solvers
136 Solvers