I get the correct answers for this, but the website refuses to tell me it is correct. Fix this dumb stuff.
@Harley, MATLAB functions are case sensitive. Did you try lowercase sum?
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
a = {'$12,001.87','$0.04','$103,887.55','$0.32'};
b = 115889.78;
assert(abs(moneySum(a)-b) < 1e-4)
x =
1×4 cell array
{'12,001.87'} {'0.04'} {'103,887.55'} {'0.32'}
b =
1.0e+05 *
0.1200 0.0000 1.0389 0.0000
|
2 | Fail |
a = {'$0.02'};
b = 0.02;
assert(abs(moneySum(a)-b) < 1e-4)
x =
1×1 cell array
{'0.02'}
b =
0.0200
|
3 | Fail |
a = {'$81.47','$12.69','$91,337.60'};
b = 91431.76;
assert(abs(moneySum(a)-b) < 1e-4)
x =
1×3 cell array
{'81.47'} {'12.69'} {'91,337.60'}
b =
1.0e+04 *
0.0081 0.0013 9.1338
|
3238 Solvers
401 Solvers
367 Solvers
382 Solvers
Flip the vector from right to left
2666 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!