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 |
y=[4 4 4 3 3 3 5 5 5 2 9 7 12 6 6 5 1 3 3 3 21 ];
x_correct = [
4
4
4
3
3
3
5
5
5
6
6
6
8
8
8
3
3
3
9
9
9
];
assert(isequal(moving_average(y),x_correct))
|
2 | Pass |
y=[4 13 4 3 3 6 5 6 4 ];
x_correct = [ 7
7
7
4
4
4
5
5
5];
assert(isequal(moving_average(y),x_correct))
|
276 Solvers
300 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1064 Solvers
1248 Solvers
103 Solvers