Conversion of Binary To Decimal Number using Python ITPlayzz March 18, 2021 Algorithms 0 Comments Ones and Zeros Description: Given an array of ones and zeroes, convert the equivalent binary value to an integer. Eg: [0, 0, 0, 1] is treated as 0… Read more
Find the Substring . Given s and x , determine the zero-based index of the first occurrence of x in s String s consists of lowercase letters in the range ascii(a-z) String x consists of lower case letters and may also contain a single wildcard character ‘*’ that represents any one character. April 17, 2022