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)))
|
8407 Solvers
Project Euler: Problem 7, Nth prime
339 Solvers
Find and replaces spaces from a input string with *
107 Solvers
Solving Quadratic Equations (Version 1)
361 Solvers
Create a square matrix of zeros of even order
72 Solvers