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))
|
Find the largest value in the 3D matrix
1056 Solvers
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
505 Solvers
583 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!