Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
pmin = 20;
pmax = 30;
d = [1 2 3 4 5];
n = [10 9 4 7 2];
p = fit_distribution(d,n,pmin,pmax)
assert(~any(p<pmin) && ~any(p>pmax))
for i = 1:length(d)
assert(isequal(n(i), sum(rem(p,d(i))==0)))
end
p =
30 15 12 16 16 16 16 16 16 18
|
2 | Pass |
pmin = 1;
pmax = 50;
d = [1 3 5 7 8 9];
n = [40 14 12 6 4 1];
p = fit_distribution(d,n,pmin,pmax);
assert(~any(p<pmin) && ~any(p>pmax))
for i = 1:length(d)
assert(isequal(n(i), sum(rem(p,d(i))==0)))
end
|
3 | Fail |
pmin = 100;
pmax = 200;
d = [1 8 9 15 22];
n = [20 2 1 0 2];
p = fit_distribution(d,n,pmin,pmax);
assert(~any(p<pmin) && ~any(p>pmax))
for i = 1:length(d)
assert(isequal(n(i), sum(rem(p,d(i))==0)))
end
|
4 | Fail |
pmin = 5;
pmax = 37;
d = [1 10 20 3 11];
n = [60 7 1 19 5];
p = fit_distribution(d,n,pmin,pmax);
assert(~any(p<pmin) && ~any(p>pmax))
for i = 1:length(d)
assert(isequal(n(i), sum(rem(p,d(i))==0)))
end
|
given 3 sides, find area of this triangle
600 Solvers
Similar Triangles - find the height of the tree
156 Solvers
143 Solvers
Test if two numbers have the same digits
155 Solvers
30 Solvers