Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
str = '4 and 20 blackbirds baked in a pie';
total = 24;
assert(isequal(number_sum(str),total))
y =
4
y =
4 20
|
2 | Pass |
%%
str = '2 4 6 8 who do we appreciate?';
total = 20;
assert(isequal(number_sum(str),total))
y =
2
y =
2 4
y =
2 4 6
y =
2 4 6 8
|
3 | Pass |
%%
str = 'He worked at the 7-11 for $10 an hour';
total = 28;
assert(isequal(number_sum(str),total))
y =
7
y =
7 11
y =
7 11 10
|
4 | Pass |
%%
str = 'that is 6 of one and a half dozen of the other';
total = 6;
assert(isequal(number_sum(str),total))
y =
6
|
Return a list sorted by number of occurrences
1225 Solvers
Basics: 'Find the eigenvalues of given matrix
257 Solvers
579 Solvers
341 Solvers
730 Solvers