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)
sum =
0
gg =
'$12,001.87'
sum =
1.2002e+04
gg =
'$0.04'
sum =
1.2002e+04
gg =
'$103,887.55'
sum =
1.1589e+05
gg =
'$0.32'
sum =
1.1589e+05
b =
1.1589e+05
|
2 | Pass |
a = {'$0.02'};
b = 0.02;
assert(abs(moneySum(a)-b) < 1e-4)
sum =
0
gg =
'$0.02'
sum =
0.0200
b =
0.0200
|
3 | Pass |
a = {'$81.47','$12.69','$91,337.60'};
b = 91431.76;
assert(abs(moneySum(a)-b) < 1e-4)
sum =
0
gg =
'$81.47'
sum =
81.4700
gg =
'$12.69'
sum =
94.1600
gg =
'$91,337.60'
sum =
9.1432e+04
b =
9.1432e+04
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
Reverse the Words (not letters) of a String
297 Solvers
1882 Solvers
669 Solvers
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!