Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
before = 54.3;
after = 46.5;
y_correct = 4;
assert(isequal(fcn(before,after),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 fcn (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
2 | Pass |
before = 65.0;
after = 50.0;
y_correct = 7;
assert(isequal(fcn(before,after),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 fcn (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
before = 95.7;
after = 55.5;
y_correct = 14;
assert(isequal(fcn(before,after),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 fcn (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
Return the 3n+1 sequence for n
6169 Solvers
1051 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1492 Solvers
Magic is simple (for beginners)
2756 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!