Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = [30 46 16 -46 35 44 18 26 25 -10];
correct = [8 9];
[i1 i2] = nearestNumbers(A);
assert(isequal([i1 i2],correct))
index1 =
8
index2 =
9
|
2 | Pass |
A = [1555 -3288 2061 -4681 -2230 -4538 -4028 3235 1949 -1829];
correct = [3 9];
[i1 i2] = nearestNumbers(A);
assert(isequal([i1 i2],correct))
index1 =
3
index2 =
9
|
3 | Pass |
A = [-1 1 10 -10];
correct = [1 2];
[i1 i2] = nearestNumbers(A);
assert(isequal([i1 i2],correct))
index1 =
1
index2 =
2
|
4 | Pass |
A = [0 1000 -2000 1001 0];
correct = [1 5];
[i1 i2] = nearestNumbers(A);
assert(isequal([i1 i2],correct))
index1 =
1
index2 =
5
|
5 | Pass |
A = [1:1000 0.5];
correct = [1 1001];
[i1 i2] = nearestNumbers(A);
assert(isequal([i1 i2],correct))
index1 =
1
index2 =
1001
|
6 | Pass |
% Area codes
A = [847 217 508 312 212];
correct = [2 5];
[i1 i2] = nearestNumbers(A);
assert(isequal([i1 i2],correct))
index1 =
2
index2 =
5
|
7 | Pass |
% Zip codes
A = [60048 61802 01702 60601 10001];
correct = [1 4];
[i1 i2] = nearestNumbers(A);
assert(isequal([i1 i2],correct))
index1 =
1
index2 =
4
|
686 Solvers
267 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
Vectorize the digits of an Integer
269 Solvers
401 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!