Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1; n = 6;
y_correct = 7;
assert(isequal(simplePoly(x,n),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 simplePoly (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 2; n = 11;
y_correct = 4095;
assert(isequal(simplePoly(x,n),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 simplePoly (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 0; n = 444;
y_correct = 1;
assert(isequal(simplePoly(x,n),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 simplePoly (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = -2; n = 3;
y_correct = -5;
assert(isequal(simplePoly(x,n),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 simplePoly (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = 2; n = 0;
y_correct = 1;
assert(isequal(simplePoly(x,n),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 simplePoly (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
Remove all the words that end with "ain"
1292 Solvers
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
351 Solvers
260 Solvers
Calculate distance travelled when given radius and rotations
183 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!