count=0;
temp=zeros(length(x),1);
for k=1:length(x)
if x(k)=='0'
count=0;
elseif x(k)=='1'
count=count+1;
end
temp(k)=count;
end
y=max(temp);
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = '0';
y_correct = 0;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x = '1';
y_correct = 1;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
3 | Pass |
x = '01';
y_correct = 1;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint3 (line 3)
In solutionTest (line 7)]
|
4 | Pass |
x = '10';
y_correct = 1;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint4 (line 3)
In solutionTest (line 9)]
|
5 | Pass |
x = '00';
y_correct = 0;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint5 (line 3)
In solutionTest (line 11)]
|
6 | Pass |
x = '11';
y_correct = 2;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint6 (line 3)
In solutionTest (line 13)]
|
7 | Pass |
x = '1111111111';
y_correct = 10;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
x = '100101011111010011111';
y_correct = 5;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint8 (line 3)
In solutionTest (line 17)]
|
9 | Pass |
x = '01010101010101010101010101';
y_correct = 1;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint9 (line 3)
In solutionTest (line 19)]
|
10 | Pass |
x = '0101010111000101110001011100010100001110110100000000110001001000001110001000111010101001101100001111';
y_correct = 4;
assert(isequal(lengthOnes(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 lengthOnes (line 2)
In ScoringEngineTestPoint10 (line 3)
In solutionTest (line 21)]
|
2197 Solvers
233 Solvers
Longest run of consecutive numbers
1661 Solvers
432 Solvers
518 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!