one of the hardest problems I've ever faced
enjoyed solving this
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.1589e+05
|
2 | Pass |
a = {'$0.02'};
b = 0.02;
assert(abs(moneySum(a)-b) < 1e-4)
b =
0.0200
|
3 | Pass |
a = {'$81.47','$12.69','$91,337.60'};
b = 91431.76;
assert(abs(moneySum(a)-b) < 1e-4)
b =
9.1432e+04
|
Return a list sorted by number of occurrences
1225 Solvers
Back to basics 3 - Temp Directory
277 Solvers
533 Solvers
How many trades represent all the profit?
460 Solvers
395 Solvers