Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
pudding = 1;
cookie = 2;
c_correct = 1;
assert(isequal(check_cal(pudding,cookie),c_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 check_cal (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
2 | Pass |
pudding = 2;
cookie = 2;
c_correct = 0;
assert(isequal(check_cal(pudding,cookie),c_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 check_cal (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
pudding = 0;
cookie = 6;
c_correct = 1;
assert(isequal(check_cal(pudding,cookie),c_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 check_cal (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
4 | Pass |
pudding = 0;
cookie = 7;
c_correct = 0;
assert(isequal(check_cal(pudding,cookie),c_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 check_cal (line 2)
In ScoringEngineTestPoint4 (line 4)
In solutionTest (line 9)]
|
5 | Pass |
pudding = 1;
cookie = 4;
c_correct = 0;
assert(isequal(check_cal(pudding,cookie),c_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 check_cal (line 2)
In ScoringEngineTestPoint5 (line 4)
In solutionTest (line 11)]
|
Find the alphabetic word product
2322 Solvers
641 Solvers
452 Solvers
486 Solvers
Write a code that will follow the equation y = x * (x + x) * x.
212 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!