I think HIST would be more correct here than HISTC, as HIST takes bin centres as an argument, rather than bin edges.
But this is a very clever solution. I'm using min:max as bin centres, quite a bit longer!
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 5 2 2 7 8 3 3 1 3 8 8 8];
y_correct = [2 3];
assert(isequal(threeTimes(x),y_correct))
|
2 | Pass |
%%
x = [1 1 1];
y_correct = [1];
assert(isequal(threeTimes(x),y_correct))
|
3 | Pass |
%%
x = [5 10 -3 10 -3 11 -3 5 5 7];
y_correct = [-3 5];
assert(isequal(threeTimes(x),y_correct))
|
729 Solvers
337 Solvers
Matrix with different incremental runs
193 Solvers
Replace multiples of 5 with NaN
281 Solvers
304 Solvers