Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 4 9 16 25];
y_correct = [1 3 2];
assert(isequal(seq2commondiff(x),y_correct))
|
2 | Pass |
x = [1 9 29 67 129 221];
y_correct = [1 8 12 6];
assert(isequal(seq2commondiff(x),y_correct))
|
3 | Pass |
x = [3 4 9 23 51 98 169 269 403 576];
y_correct = [3 1 4 5];
assert(isequal(seq2commondiff(x),y_correct))
|
4 | Pass |
x = [1 8 27 64 125 216];
y_correct = [1 7 12 6];
assert(isequal(seq2commondiff(x),y_correct))
|
5 | Pass |
x = [2 0 2 9 22 42];
y_correct = [2 -2 4 1];
assert(isequal(seq2commondiff(x),y_correct))
|
6 | Pass |
x=[1 8 28 67 131 226]
y_correct = [1 7 13 6];
assert(isequal(seq2commondiff(x),y_correct))
x =
1 8 28 67 131 226
|
900 Solvers
3968 Solvers
Rotate and display numbered tile
239 Solvers
147 Solvers
489 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!