Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 7;
y_correct = [3 1 0 0 0 0 0;
1 2 1 0 0 0 0;
0 1 1 1 0 0 0;
0 0 1 0 1 0 0;
0 0 0 1 1 1 0;
0 0 0 0 1 2 1;
0 0 0 0 0 1 3];
assert(isequal(your_fcn_name(x),y_correct))
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint1 (line 9)
In solutionTest (line 3)]
|
2 | Pass |
x = 5;
y_correct =[2 1 0 0 0;
1 1 1 0 0;
0 1 0 1 0;
0 0 1 1 1;
0 0 0 1 2];
assert(isequal(your_fcn_name(x),y_correct))
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint2 (line 7)
In solutionTest (line 5)]
|
3 | Pass |
x = 11;
y_correct =[5 1 0 0 0 0 0 0 0 0 0;
1 4 1 0 0 0 0 0 0 0 0;
0 1 3 1 0 0 0 0 0 0 0;
0 0 1 2 1 0 0 0 0 0 0;
0 0 0 1 1 1 0 0 0 0 0;
0 0 0 0 1 0 1 0 0 0 0;
0 0 0 0 0 1 1 1 0 0 0;
0 0 0 0 0 0 1 2 1 0 0;
0 0 0 0 0 0 0 1 3 1 0;
0 0 0 0 0 0 0 0 1 4 1;
0 0 0 0 0 0 0 0 0 1 5];
assert(isequal(your_fcn_name(x),y_correct));
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint3 (line 13)
In solutionTest (line 7)]
|
4 | Pass |
x = 5;
y_correct =[2 1 0 0 0;
1 1 1 0 0;
0 1 0 1 0;
0 0 1 1 1;
0 0 0 1 2];
assert(isequal(your_fcn_name(x),y_correct));
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint4 (line 7)
In solutionTest (line 9)]
|
Find the longest sequence of 1's in a binary sequence.
2441 Solvers
276 Solvers
Multiples of a Number in a Given Range
140 Solvers
78 Solvers
Determine the length of a string of characters
121 Solvers