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))
|
1763 Solvers
15294 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
277 Solvers
2538 Solvers
Sum of big primes without primes
85 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!