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))
y =
55 60 65 70 75 80 85 90 95 100 105 110 115
|
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))
y =
10 15 20 25 30 35 40
|
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))
y =
-10 -5 0 5 10 15 20
|
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))
y =
100 105 110 115 120 125 130 135 140 145 150 155
|
1046 Solvers
Let's get back to school, and create multiplication tables
103 Solvers
200 Solvers
153 Solvers
82 Solvers