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 |
%%
y=@(x)1+x/10^10;
acres=round(ranch(y));
acres_correct = 640;
assert(acres==acres_correct)
|
2 | Pass |
%%
y=@(x)0.5+x/10^10;
acres=round(ranch(y));
acres_correct = 320;
assert(acres==acres_correct)
|
3 | Pass |
%%
y=@(x)1+x;
acres=round(ranch(y));
acres_correct = 960;
assert(acres==acres_correct)
|
4 | Pass |
%%
y=@(x)2+sin(x);
acres=round(ranch(y));
acres_correct = 1574;
assert(acres==acres_correct)
|
5 | Pass |
%%
y=@(x)3+cos(x);
acres=round(ranch(y));
acres_correct = 2459;
assert(acres==acres_correct)
|
Back to basics 9 - Indexed References
348 Solvers
76 Solvers
Back to basics 16 - byte order
149 Solvers
232 Solvers
403 Solvers