Problem 44500. Find the starting index of a consecutive condition
Given a logical vector v, and a positive integer n, return the smallest index i that satisfies:
all( v(i : i+n-1) ) == true
For Example,
v = logical([0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0]); i = consecutiveFind(v, 4);
Then:
i = 6
If there is no sequence of n consecutive true, then i should be an empty array.
Solution Stats
Problem Comments
-
1 Comment
Atsushi Ueno
on 16 Nov 2019
The test suite is not enough because it does not contain any case that the number of consecutive true bits is exactly same as n.
Solution Comments
Show commentsProblem Recent Solvers62
Suggested Problems
-
Project Euler: Problem 3, Largest prime factor
1784 Solvers
-
Back to basics 21 - Matrix replicating
1784 Solvers
-
Given a window, how many subsets of a vector sum positive
869 Solvers
-
Split a string into chunks of specified length
2044 Solvers
-
4480 Solvers
More from this Author25
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!