Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x= [0 0 1 1 2 2 3 3];
y= [0 1 0 1 0 1 0 1];
z=[-4 -1 -3 -2 0 -1 5 2];
c=[1 -2 3 -4];
assert(isequal(c,round(sufit(x,y,z))))
|
2 | Pass |
x= rand(1,100);
y= rand(1,100);
z=7*x.^2-9*x.*y+11*y.^2-17;
c=[7 -9 11 -17];
assert(isequal(c,round(sufit(x,y,z))))
|
3 | Pass |
x= rand(1,10000);
y= rand(1,10000);
z=17*x.^2-19*x.*y+11*y.^2-13;
c=[17 -19 11 -13];
assert(isequal(c,round(sufit(x,y,z))))
|
Remove all the words that end with "ain"
1029 Solvers
469 Solvers
624 Solvers
Determine if input is a perfect number
114 Solvers
Area of an equilateral triangle
1708 Solvers