This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = -2;
b = -12;
c = -10;
[puntos_corte_correct] = [-5 -1 -10];
assert(isequal(puntos_corte(a,b,c),puntos_corte_correct))
|
2 | Pass |
a = 1;
b = -3;
c = -4;
[puntos_corte_correct] = [-1 4 -4];
assert(isequal(puntos_corte(a,b,c),puntos_corte_correct))
|
3 | Pass |
a = 2;
b = -2;
c = -4;
[puntos_corte_correct] = [1 -2 -4];
assert(isequal(puntos_corte(a,b,c),puntos_corte_correct))
|
Find the two most distant points
1628 Solvers
3375 Solvers
92 Solvers
Are all the three given point in the same line?
270 Solvers
400 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!