This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
ans =
1×4 cell array
{'E'} {'a'} {'s'} {'y'}
|
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))
ans =
1×4 cell array
{'I se'} {'e'} {'m to '} {'be having tremendous d'}
|
3 | Pass |
s = 'The answer is 42';
b = [4 7 3];
y_correct = {'The ','answer ','is '};
assert(isequal(break_string(s,b),y_correct))
ans =
1×3 cell array
{'The '} {'answer '} {'is '}
|
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))
ans =
1×3 cell array
{'Di'} {'d I'} {' do'}
|
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))
ans =
1×3 cell array
{'Ye'} {'s no w'} {'hen'}
|
6 | Pass |
s = 'Hello there';
b = [3 4 4];
y_correct = {'Hel','lo t','here'};
assert(isequal(break_string(s,b),y_correct))
ans =
1×3 cell array
{'Hel'} {'lo t'} {'here'}
|
7 | Pass |
s = 'One is not enough!';
b = [3 1 1];
y_correct = {'One',' ','i'};
assert(isequal(break_string(s,b),y_correct))
ans =
1×3 cell array
{'One'} {' '} {'i'}
|
338 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
216 Solvers
227 Solvers
412 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!