Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = true;
y = false;
z = true;
y_correct = ((x&y)|z)&((z|x&y)|(z&y|x))|((x&z)|z)&((y|x&z)|(z&x|y))|(x|y|z);
assert(isequal(logicFunction(x,y,z),y_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 logicFunction (line 2)
In ScoringEngineTestPoint1 (line 5)
In solutionTest (line 3)]
|
2 | Pass |
x = true;
y = true;
z = true;
y_correct = ((x&y)|z)&((z|x&y)|(z&y|x))|((x&z)|z)&((y|x&z)|(z&x|y))|(x|y|z);
assert(isequal(logicFunction(x,y,z),y_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 logicFunction (line 2)
In ScoringEngineTestPoint2 (line 5)
In solutionTest (line 5)]
|
3 | Pass |
x = true;
y = false;
z = false;
y_correct = ((x&y)|z)&((z|x&y)|(z&y|x))|((x&z)|z)&((y|x&z)|(z&x|y))|(x|y|z);
assert(isequal(logicFunction(x,y,z),y_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 logicFunction (line 2)
In ScoringEngineTestPoint3 (line 5)
In solutionTest (line 7)]
|
4 | Pass |
x = false;
y = false;
z = true;
y_correct = ((x&y)|z)&((z|x&y)|(z&y|x))|((x&z)|z)&((y|x&z)|(z&x|y))|(x|y|z);
assert(isequal(logicFunction(x,y,z),y_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 logicFunction (line 2)
In ScoringEngineTestPoint4 (line 5)
In solutionTest (line 9)]
|
5 | Pass |
x = false;
y = false;
z = false;
y_correct = ((x&y)|z)&((z|x&y)|(z&y|x))|((x&z)|z)&((y|x&z)|(z&x|y))|(x|y|z);
assert(isequal(logicFunction(x,y,z),y_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 logicFunction (line 2)
In ScoringEngineTestPoint5 (line 5)
In solutionTest (line 11)]
|
4106 Solvers
Swap the first and last columns
12410 Solvers
Is my wife right? Now with even more wrong husband
1241 Solvers
188 Solvers
379 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!