Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s = 'Easy';
b = ones(1,4);
y_correct = {'E','a','s','y'};
assert(isequal(break_string(s,b),y_correct))
|
2 | Pass |
s = 'I seem to be having tremendous difficulty with my lifestyle';
b = [4 1 5 22];
y_correct = {'I se','e','m to ','be having tremendous d'};
assert(isequal(break_string(s,b),y_correct))
|
3 | Pass |
s = 'The answer is 42';
b = [4 7 3];
y_correct = {'The ','answer ','is '};
assert(isequal(break_string(s,b),y_correct))
|
4 | Pass |
s = 'Did I do that?';
b = [2 3 3];
y_correct = {'Di','d I',' do'};
assert(isequal(break_string(s,b),y_correct))
|
5 | Pass |
s = 'Yes no when?';
b = [2 6 3];
y_correct = {'Ye','s no w','hen'};
assert(isequal(break_string(s,b),y_correct))
|
6 | Pass |
s = 'Hello there';
b = [3 4 4];
y_correct = {'Hel','lo t','here'};
assert(isequal(break_string(s,b),y_correct))
|
7 | Pass |
s = 'One is not enough!';
b = [3 1 1];
y_correct = {'One',' ','i'};
assert(isequal(break_string(s,b),y_correct))
|
Cell Counting: How Many Draws?
581 Solvers
352 Solvers
391 Solvers
Number of Even Elements in Fibonacci Sequence
665 Solvers
Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
761 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!