no function squareform either... pffff
Cody utilizes vanilla MATLAB (no toolboxes).
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
p = [0 0;
1 0;
2 2;
0 1];
ix_correct = [1 3];
assert(isequal(mostDistant(p),ix_correct))
|
2 | Fail |
p = [0 0;
1 0;
2 2;
0 10];
ix_correct = [2 4];
assert(isequal(mostDistant(p),ix_correct))
|
3 | Fail |
p = [0 0;
-1 50];
ix_correct = [1 2];
assert(isequal(mostDistant(p),ix_correct))
|
4 | Fail |
p = [5 5;
1 0;
2 2;
0 10;
-100 20;
1000 400];
ix_correct = [5 6];
assert(isequal(mostDistant(p),ix_correct))
|
785 Solvers
Count from 0 to N^M in base N.
220 Solvers
444 Solvers
405 Solvers
Number of Even Elements in Fibonacci Sequence
665 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!