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 |
str = 'series{d-96}x11{second}';
y_correct = {'d-96';'second'};
assert(isempty(find(strcmp(parseBrackets(str),y_correct)==0)))
|
2 | Pass |
str = 'x=rho*x{-1}+(1-rho)*y{+1}';
y_correct = {'-1';'+1'};
assert(isempty(find(strcmp(parseBrackets(str),y_correct)==0)))
|
3 | Pass |
str = 'hello there; this string contains no braces';
y_correct = {};
assert(isempty(find(strcmp(parseBrackets(str),y_correct)==0)))
|
4 | Pass |
str = '{one} two three {four} five {six} seven';
y_correct = {'one';'four';'six'};
assert(isempty(find(strcmp(parseBrackets(str),y_correct)==0)))
|
5 | Pass |
str = '{Where} in the world {is the} thick, red {encyclopedia?}';
y_correct = {'Where';'is the';'encyclopedia?'};
assert(isempty(find(strcmp(parseBrackets(str),y_correct)==0)))
|
198 Solvers
07 - Common functions and indexing 1
269 Solvers
Side of an equilateral triangle
1525 Solvers
82 Solvers
67 Solvers