This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x_min = 55;
x_max = 115;
y_correct = [55 60 65 70 75 80 85 90 95 100 105 110 115];
assert(isequal(counting(x_min,x_max),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 counting (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
ans =
1
|
2 | Pass |
x_min = 10;
x_max = 40;
y_correct = [10 15 20 25 30 35 40];
assert(isequal(counting(x_min,x_max),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 counting (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
ans =
1
|
3 | Pass |
x_min = -10;
x_max = 20;
y_correct = [-10 -5 0 5 10 15 20];
assert(isequal(counting(x_min,x_max),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 counting (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
ans =
1
|
4 | Pass |
x_min = 100;
x_max = 155;
y_correct = [100 105 110 115 120 125 130 135 140 145 150 155];
assert(isequal(counting(x_min,x_max),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 counting (line 2)
In ScoringEngineTestPoint4 (line 4)
In solutionTest (line 9)]
ans =
1
|
Project Euler: Problem 10, Sum of Primes
707 Solvers
Back to basics 3 - Temp Directory
328 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
547 Solvers
376 Solvers
202 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!