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)));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In RevCountSeq (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = [1 9];
correct = [9];
assert(isequal(correct, RevCountSeq(x)));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In RevCountSeq (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = [9 1];
correct = ones(1,9);
assert(isequal(correct, RevCountSeq(x)));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In RevCountSeq (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
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)));
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In RevCountSeq (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13051 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Create a square matrix of multiples
383 Solvers
Flip the main diagonal of a matrix
506 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!