Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 0 -1 3 2 -3 1];
window = 2;
y_correct = 3;
assert(isequal(sum_positive(x, window),y_correct))
y =
1
y =
1 -1
y =
1 -1 2
y =
1 -1 2 5
y =
1 -1 2 5 -1
y =
1 -1 2 5 -1 -2
y =
3
|
2 | Pass |
%%
x = [1 0 -1 3 2 -3 1];
window = 3;
y_correct = 3;
assert(isequal(sum_positive(x, window),y_correct))
y =
0
y =
0 2
y =
0 2 4
y =
0 2 4 2
y =
0 2 4 2 0
y =
3
|
3 | Pass |
%%
x = [1 0 -1 3 2 -3 1];
window = 4;
y_correct = 4;
assert(isequal(sum_positive(x, window),y_correct))
y =
3
y =
3 4
y =
3 4 1
y =
3 4 1 3
y =
4
|
4 | Pass |
%%
x = [1 0 -1 3 2 -3 1 1 1 1 1 1];
window = 2;
y_correct = 8;
assert(isequal(sum_positive(x, window),y_correct))
y =
1
y =
1 -1
y =
1 -1 2
y =
1 -1 2 5
y =
1 -1 2 5 -1
y =
1 -1 2 5 -1 -2
y =
1 -1 2 5 -1 -2 2
y =
1 -1 2 5 -1 -2 2 2
y =
1 -1 2 5 -1 -2 2 2 2
y =
1 -1 2 5 -1 -2 2 2 2 2
y =
1 -1 2 5 -1 -2 2 2 2 2 2
y =
8
|
Check to see if a Sudoku Puzzle is Solved
278 Solvers
2261 Solvers
Least common multiple of many numbers
189 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
485 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!