This solution is outdated. To rescore this solution, sign in.
Not general. Solution depends on the particular test case.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [100 23 -34 0.005 -0.466664 -0.555 1 134534];
y_correct = [1 2 3 5 4 5 1 1];
assert(isequal(leadingDigit(x),y_correct))
|
2 | Fail |
%%
x = [57 -0.2 8913 -63 0.838127];
y_correct = [5 2 8 6 8];
assert(isequal(leadingDigit(x),y_correct))
Error: Assertion failed.
|
3 | Fail |
%%
x = [-0.4336 0.3426 3.5784 2.7694 -1.3499];
y_correct = [4 3 3 2 1];
assert(isequal(leadingDigit(x),y_correct))
Error: Assertion failed.
|
1961 Solvers
224 Solvers
216 Solvers
509 Solvers
739 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!