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 |
x =150000000 ;
y_correct = 500;
assert(isequal(light_time(x),y_correct))
ans =
500
|
2 | Pass |
x=1800000;
y_correct = 6;
assert(isequal(light_time(x),y_correct))
ans =
6
|
3 | Pass |
x=300000;
y_correct = 1;
assert(isequal(light_time(x),y_correct))
ans =
1
|
4 | Pass |
x=57909000;
y_correct = 193;
assert(isequal(light_time(x),y_correct))
ans =
193
|
5 | Pass |
x=5790960000;
y_correct = 1.9303e+04;
assert(isequal(light_time(x),y_correct))
ans =
19303
|
19330 Solvers
Back to basics 3 - Temp Directory
328 Solvers
1143 Solvers
228 Solvers
2981 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!