The test for this problem is wrong!
Well, that was disappointing!
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)
Error: Assertion failed.
|
2 | Fail |
%%
a = {'$0.02'};
b = 0.02;
assert(abs(moneySum(a)-b) < 1e-4)
Error: Assertion failed.
|
3 | Fail |
%%
a = {'$81.47','$12.69','$91,337.60'};
b = 91431.76;
assert(abs(moneySum(a)-b) < 1e-4)
Error: Assertion failed.
|
Number of 1s in the Binary Representation of a Number
319 Solvers
278 Solvers
181 Solvers
1228 Solvers
275 Solvers