[LeetCode] 1461. Check If a String Contains All Binary Codes of Size K
Given a binary string s and an integer k. Return True if every binary code of length k is a substring of s. Otherwise, return False. Example 1:Input: s = “00110110”, k = 2Output: trueExplana