Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 5 1 2 4 1 1 3];
correct = [5 5 2 1 1 1 1 3];
assert(isequal(correct, RevCountSeq(x)));
|
2 | Pass |
x = [1 9];
correct = [9];
assert(isequal(correct, RevCountSeq(x)));
|
3 | Pass |
x = [9 1];
correct = ones(1,9);
assert(isequal(correct, RevCountSeq(x)));
|
4 | Pass |
x = [1 1 1 2 1 3 1 4 1 5 1 6 1 7 1 8 1 9];
correct = 1:9;
assert(isequal(correct, RevCountSeq(x)));
|
Check to see if a Sudoku Puzzle is Solved
279 Solvers
Reverse the Words (not letters) of a String
297 Solvers
Project Euler: Problem 2, Sum of even Fibonacci
835 Solvers
Solve the set of simultaneous linear equations
273 Solvers
Find the maximum number of decimal places in a set of numbers
737 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!