This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
|
2 | Pass |
x = [10 0 0 0 100];
y_correct = [5 0 0 50];
assert(isequal(two_mean(x),y_correct))
|
3 | Pass |
x = [1 2 4];
y_correct = [1.5 3];
assert(isequal(two_mean(x),y_correct))
|
434 Solvers
Number of 1s in a binary string
1228 Solvers
192 Solvers
413 Solvers
739 Solvers