cheese
I added another test to the suite that invalidated this cheesy solution.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3];
y_correct = [1.5 2.5];
assert(isequal(two_mean(x),y_correct))
ans =
1.5000 2.5000
|
2 | Pass |
%%
x = [10 0 0 0 100];
y_correct = [5 0 0 50];
assert(isequal(two_mean(x),y_correct))
ans =
5 0 0 50
|
3 | Fail |
%%
x = [1 2 4];
y_correct = [1.5 3];
assert(isequal(two_mean(x),y_correct))
Error: Assertion failed.
|
1166 Solvers
Who knows the last digit of pi?
488 Solvers
154 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
230 Solvers
1078 Solvers