This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n=10;
e=10;
s=10;
w=10;
t=2;
y_correct=113.1371;
assert(abs(total_distance(n,e,s,w,t)-y_correct)<1e-4)
|
2 | Pass |
n=15;
e=7;
s=3;
w=15;
t=1.5;
y_correct=91.0185;
assert(abs(total_distance(n,e,s,w,t)-y_correct)<1e-4)
|
3 | Pass |
n=11;
e=21;
s=31;
w=41;
t=1.7;
y_correct=263.5003;
assert(abs(total_distance(n,e,s,w,t)-y_correct)<1e-4)
|
2518 Solvers
298 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
209 Solvers
Basics: 'Find the eigenvalues of given matrix
257 Solvers
34 Solvers