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))
c =
1×4 cell array
{[1]} {[2]} {[3]} {[4]}
|
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))
c =
1×4 cell array
{1×4 double} {[5]} {1×5 double} {1×22 double}
|
3 | Pass |
s = 'The answer is 42';
b = [4 7 3];
y_correct = {'The ','answer ','is '};
assert(isequal(break_string(s,b),y_correct))
c =
1×3 cell array
{1×4 double} {1×7 double} {1×3 double}
|
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))
c =
1×3 cell array
{1×2 double} {1×3 double} {1×3 double}
|
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))
c =
1×3 cell array
{1×2 double} {1×6 double} {1×3 double}
|
6 | Pass |
s = 'Hello there';
b = [3 4 4];
y_correct = {'Hel','lo t','here'};
assert(isequal(break_string(s,b),y_correct))
c =
1×3 cell array
{1×3 double} {1×4 double} {1×4 double}
|
7 | Pass |
s = 'One is not enough!';
b = [3 1 1];
y_correct = {'One',' ','i'};
assert(isequal(break_string(s,b),y_correct))
c =
1×3 cell array
{1×3 double} {[4]} {[5]}
|
2261 Solvers
404 Solvers
753 Solvers
Create a two dimensional zero matrix
354 Solvers
Find out sum and carry of Binary adder
379 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!