fun problem, however, smallest solutions are broken for all problems as they use ! & regexp
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_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 is_it_odd (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
n = 2;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_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 is_it_odd (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
n = 28;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_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 is_it_odd (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
n = 453;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_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 is_it_odd (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
n = 17;
ans_correct = true;
assert(isequal(is_it_odd(n),ans_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 is_it_odd (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
n = 16;
ans_correct = false;
assert(isequal(is_it_odd(n),ans_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 is_it_odd (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
486 Solvers
329 Solvers
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
358 Solvers
321 Solvers
569 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!