Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
p = [0 0;
1 0;
2 2;
0 1];
ix_correct = [1 3];
assert(isequal(mostDistant(p),ix_correct))
p =
8
5
5
0
ind =
1
2
4
3
|
2 | Pass |
%%
p = [0 0;
1 0;
2 2;
0 10];
ix_correct = [2 4];
assert(isequal(mostDistant(p),ix_correct))
p =
101
100
68
0
ind =
2
1
3
4
|
3 | Pass |
%%
p = [0 0;
-1 50];
ix_correct = [1 2];
assert(isequal(mostDistant(p),ix_correct))
p =
2501
0
ind =
2
1
|
4 | Pass |
%%
p = [5 5;
1 0;
2 2;
0 10;
-100 20;
1000 400];
ix_correct = [5 6];
assert(isequal(mostDistant(p),ix_correct))
p =
1354400
1158001
1154408
1152100
1146050
0
ind =
5
2
3
4
1
6
|
Back to basics 22 - Rotate a matrix
763 Solvers
Determine Whether an array is empty
646 Solvers
Getting the indices from a matrice
360 Solvers
253 Solvers
264 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!