Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
pts = [0 1; 0 2; 3 2; 0 3; 0 4 ];
outlier = 3;
assert(isequal(spot_the_outlier(pts),outlier))
|
2 | Fail |
pts = [10 -1;7 0;9.5 0.3;9 1.6;8.5 2.9];
outlier = 2;
assert(isequal(spot_the_outlier(pts),outlier))
|
3 | Fail |
pts = [-0.6 -6;-0.2 0;0 3;-0.8 -9;-2 1;-0.4 -3];
outlier = 5;
assert(isequal(spot_the_outlier(pts),outlier))
|
4 | Fail |
pts = [2 5;0 4;0 0;4 6;-2 3];
outlier = 3;
assert(isequal(spot_the_outlier(pts),outlier))
|
5 | Pass |
pts = [1 0; 0 1; 1 2; 1.5 2.5; 2 3; 3 4 ];
outlier = 1;
assert(isequal(spot_the_outlier(pts),outlier))
|
Find the longest sequence of 1's in a binary sequence.
3370 Solvers
Arrange Vector in descending order
4079 Solvers
Back to basics 6 - Column Vector
908 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
1222 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!