Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5];
y_correct = [1 2 3 4 5];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = [10 11 12 13 14 15];
y_correct = [1 0 1 1 1 2];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = [188 189];
y_correct = [9 9];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = 2887:3000;
y_correct = '999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102';
assert(isequal(sprintf('%d',gendigit_champernowne(2887:3000)),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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x=[1000000 1000001 1000002];
y_correct = [1 8 5];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x=[12000:12005];
y_correct = [7 7 3 2 7 8];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
x=[10000000 10000001 10000002];
y_correct = [7 3 0];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
x=[120000:120005];
y_correct = [2 6 2 2 2 2];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
9 | Pass |
x=[1200000:1200005];
y_correct = [ 8 5 1 8 2 1];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint9 (line 3)
In solutionTest (line 19)]
|
10 | Pass |
x=[1200004:1200009];
y_correct = [ 2 1 8 5 1 9];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint10 (line 3)
In solutionTest (line 21)]
|
11 | Pass |
x=[1200008:1200013];
y_correct = [1 9 2 1 8 5];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint11 (line 3)
In solutionTest (line 23)]
|
12 | Pass |
x=[13000008:13000013];
y_correct = [2 0 1 5 8 7];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint12 (line 3)
In solutionTest (line 25)]
|
13 | Pass |
x=[14000008:14000013];
y_correct = [ 1 5 8 7 3 1];
assert(isequal(gendigit_champernowne(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 gendigit_champernowne (line 3)
In ScoringEngineTestPoint13 (line 3)
In solutionTest (line 27)]
|
605 Solvers
Increment a number, given its digits
562 Solvers
348 Solvers
Longest run of consecutive numbers
1648 Solvers
170 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!