Last updated
Was this helpful?
Last updated
Was this helpful?
https://leetcode.com/problems/binary-string-with-substrings-representing-1-to-n
Given a binary string s
and a positive integer n
, return true
if the binary representation of all the integers in the range [1, n]
are substrings of s
, or false
otherwise.
A substring is a contiguous sequence of characters within a string.
Example 1:
Example 2:
Constraints:
1 <= s.length <= 1000
s[i]
is either '0'
or '1'
.
1 <= n <= 109