I don't understand why this is failing?? Can someone explain? It works in matlab for me
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
str = '4 and 20 blackbirds baked in a pie';
total = 24;
assert(isequal(number_sum(str),total))
splitted =
1×8 cell array
{'4'} {'and'} {'20'} {'blackbirds'} {'baked'} {'in'} {'a'} {'pie'}
array =
1×2 string array
" " "4"
array =
1×4 string array
" " "4" " " "20"
|
2 | Fail |
str = '2 4 6 8 who do we appreciate?';
total = 20;
assert(isequal(number_sum(str),total))
splitted =
1×8 cell array
{'2'} {'4'} {'6'} {'8'} {'who'} {'do'} {'we'} {'appreciate?'}
array =
1×2 string array
" " "2"
array =
1×4 string array
" " "2" " " "4"
array =
1×6 string array
" " "2" " " "4" " " "6"
array =
1×8 string array
" " "2" " " "4" " " "6" " " "8"
|
3 | Fail |
str = 'He worked at the 7-11 for $10 an hour';
total = 28;
assert(isequal(number_sum(str),total))
splitted =
1×9 cell array
{'He'} {'worked'} {'at'} {'the'} {'7-11'} {'for'} {'$10'} {'an'} {'hour'}
|
4 | Fail |
str = 'that is 6 of one and a half dozen of the other';
total = 6;
assert(isequal(number_sum(str),total))
splitted =
1×12 cell array
{'that'} {'is'} {'6'} {'of'} {'one'} {'and'} {'a'} {'half'} {'dozen'} {'of'} {'the'} {'other'}
array =
1×2 string array
" " "6"
|
Get the area codes from a list of phone numbers
532 Solvers
6372 Solvers
495 Solvers
Given a window, how many subsets of a vector sum positive
743 Solvers
463 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!