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)
|
594 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
2455 Solvers
292 Solvers
299 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!