Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
inStr = '()';
out_correct = true;
assert(isequal(isBalanced(inStr),out_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In isBalanced (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
inStr = ')';
out_correct = false;
assert(isequal(isBalanced(inStr),out_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In isBalanced (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
inStr = '(z*(a-(x+3))/(y))';
out_correct = true;
assert(isequal(isBalanced(inStr),out_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In isBalanced (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
inStr = ')(';
out_correct = false;
assert(isequal(isBalanced(inStr),out_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In isBalanced (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
inStr = '(x)(x-y)';
out_correct = true;
assert(isequal(isBalanced(inStr),out_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In isBalanced (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
inStr = ':-)';
out_correct = false;
assert(isequal(isBalanced(inStr),out_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In isBalanced (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
inStr = ')()';
out_correct = false;
assert(isequal(isBalanced(inStr),out_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In isBalanced (line 2)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
inStr = '(()';
out_correct = false;
assert(isequal(isBalanced(inStr),out_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In isBalanced (line 2)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
951 Solvers
Find the peak 3n+1 sequence value
1108 Solvers
1159 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
Back to basics 25 - Valid variable names
293 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!