Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = {'$12,001.87','$0.04','$103,887.55','$0.32'};
b = 115889.78;
assert(abs(moneySum(a)-b) < 1e-4)
b =
1.158897800000000e+05
|
2 | Pass |
a = {'$0.02'};
b = 0.02;
assert(abs(moneySum(a)-b) < 1e-4)
b =
0.020000000000000
|
3 | Pass |
a = {'$81.47','$12.69','$91,337.60'};
b = 91431.76;
assert(abs(moneySum(a)-b) < 1e-4)
b =
9.143176000000001e+04
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13049 Solvers
280 Solvers
17123 Solvers
Find perfect placement of non-rotating dominoes (easier)
240 Solvers
Convert given decimal number to binary number.
636 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!