In fact this problem can be solved by only using sscanf and str2num.
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)
|
2 | Pass |
a = {'$0.02'};
b = 0.02;
assert(abs(moneySum(a)-b) < 1e-4)
|
3 | Pass |
a = {'$81.47','$12.69','$91,337.60'};
b = 91431.76;
assert(abs(moneySum(a)-b) < 1e-4)
|
1312 Solvers
How to find the position of an element in a vector without using the find function
2322 Solvers
1594 Solvers
162 Solvers
Back to basics 25 - Valid variable names
253 Solvers