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 = 5;
x = 80;
y = 150;
assert(isequal(distance(n,x),y))
ans =
150
|
2 | Pass |
n = 2;
x = 64;
y = 64;
assert(isequal(distance(n,x),y))
ans =
64
|
3 | Pass |
n = 8;
x = 1600;
y = 3175;
assert(isequal(distance(n,x),y))
ans =
3175
|
4 | Pass |
n = 3;
x = 2500;
y = 3750;
assert(isequal(distance(n,x),y))
ans =
3750
|
5 | Pass |
n = 8;
x = 1000000;
y = 1984375;
assert(isequal(distance(n,x),y))
ans =
1984375
|
19330 Solvers
289 Solvers
299 Solvers
249 Solvers
134 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!