This solution is outdated. To rescore this solution, sign in.
Right solution to right problem
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = [1:10];
y_correct = 1;
assert(isequal(diagonal(x),y_correct))
Error: Assertion failed.
|
2 | Pass |
%%
x = [1:10]';
y_correct = 1;
assert(isequal(diagonal(x),y_correct))
|
3 | Pass |
%%
x = magic(3);
y_correct = [8 5 2];
assert(isequal(diagonal(x),y_correct))
|
4 | Pass |
%%
x = [1:3;4:6;7:9;10:12];
y_correct = [1 5 9];
assert(isequal(diagonal(x),y_correct))
|
5 | Fail |
%%
x = [1:3;4:6;7:9;10:12]';
y_correct = [1 6 11];
assert(isequal(diagonal(x),y_correct))
Error: Assertion failed.
|
The Goldbach Conjecture, Part 2
1285 Solvers
338 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
386 Solvers
573 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!