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 |
d1 = 2;d2 = 1;
n_correct = 4;
assert(isequal(Pizza2(d1,d2),n_correct))
|
2 | Pass |
d1 = 1;d2 = 2;
n_correct = 0.25;
assert(isequal(Pizza2(d1,d2),n_correct))
|
3 | Pass |
d1 = 5;d2 = 7;
n_correct = 0.75;
assert(isequal(Pizza2(d1,d2),n_correct))
|
4 | Pass |
d1 = 7;d2 = 5;
n_correct = 2;
assert(isequal(Pizza2(d1,d2),n_correct))
|
623 Solvers
651 Solvers
613 Solvers
259 Solvers
Create an array (n,n) where only diagonal elements are '1' and others are '0'
69 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!