Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 2;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = 5;
y_correct = 5;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = 100;
y_correct = 101;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = 500;
y_correct = 499;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = 911;
y_correct = 911;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = 2500;
y_correct = 2503;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
x = 8000;
y_correct = 7993;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
x = 100000;
y_correct = 100003;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
9 | Pass |
x = 1300000;
y_correct = 1299989;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint9 (line 3)
In solutionTest (line 19)]
|
10 | Pass |
x = 179424710;
y_correct = 179424719;
assert(isequal(nearestprime(x),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 nearestprime (line 1)
In ScoringEngineTestPoint10 (line 3)
In solutionTest (line 21)]
|
Find relatively common elements in matrix rows
644 Solvers
Try 1.5.4: Celsius to Fahrenheit
486 Solvers
Simple equation: Annual salary
3406 Solvers
377 Solvers
129 Solvers