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 |
A = [1 2 3;4 5 6;7 8 9];
i=1;
j=1;
y_correct = 6;
assert(isequal(cofactor(A, i, j),y_correct))
C =
6
|
2 | Pass |
A = [1 2 3;4 5 6;7 8 9];
i=2;
j=1;
y_correct = 6;
assert(isequal(cofactor(A, i, j),y_correct))
C =
6
|
Find the numeric mean of the prime numbers in a matrix.
5905 Solvers
4102 Solvers
Project Euler: Problem 7, Nth prime
339 Solvers
Find the sum of the elements in the "second" diagonal
879 Solvers
Returning a "greater than" vector
149 Solvers