Minimum number of steps needed to remove the substring K from given string
Given a binary string S, and a substring K, the task is to find the minimum no of steps required to flip the characters in a binary string such that it doesn't contain the given substring K. Note: In one step we can change 0 to 1 or vice versa.Examples: Input: S = "0111011", K = "011" Output: 2 Expl