Problem Description
Given a binary array nums
and an integer k
, return true
if all 1
s are at least k
places away from each other, otherwise return false
.
Key Insights
- The problem requires checking the distances between each pair of
1
s in the array. - A simple linear pass through the array can help keep track of the last position of
1
encountered. - If the distance between two
1
s is less thank
, the function should returnfalse
. - If the loop completes without finding any violations, return
true
.
Space and Time Complexity
Time Complexity: O(n) - We traverse the array once. Space Complexity: O(1) - We use a constant amount of space.
Solution
To solve this problem, we can use a straightforward linear traversal of the binary array nums
. We will maintain a variable to keep track of the last index where we found a 1
. As we iterate through the array, each time we encounter a 1
, we will check its index against the last recorded index. If the difference between these indices is less than k
, we return false
. If we finish the iteration without returning false
, we return true
.