nice trick :)
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
assessFunctionAbsence({'regexp','regexpi','regexprep','str2num'},'FileName','distanceRectangle2Point.m')
|
2 | Fail |
x = [-1,-1];
y = [1,1];
z = [4,5];
assert(isequal(distanceRectangle2Point(x,y,z),5))
d_correct = 5;
|
3 | Fail |
x = [-2,-1];
y = [3,1];
z = [1,2];
assert(isequal(distanceRectangle2Point(x,y,z),1))
d_correct = 1;
|
4 | Fail |
x = [1,2];
y = [3,4];
z = [-5,3];
assert(isequal(distanceRectangle2Point(x,y,z),6))
d_correct = 6;
|
5 | Fail |
x = [2,2];
y = [4,4];
z = [3,4];
assert(isequal(distanceRectangle2Point(x,y,z),0))
d_correct = 0;
|
6 | Fail |
x = [-1,0,1];
y = [0,2,4];
z = [4,5,3];
assert(isequal(distanceRectangle2Point(x,y,z),5))
d_correct = 5;
|
7 | Fail |
x = [1,0,1];
y = [2,3,2];
z = [-1,-2,3];
assert(isequal(distanceRectangle2Point(x,y,z),3))
d_correct = 3;
|
Remove all the words that end with "ain"
1028 Solvers
198 Solvers
309 Solvers
264 Solvers
402 Solvers