FazeelUsmani / Amazon-SDE-Preparation

This repository includes all the interview preparation questions for Amazon SDE role
https://practice.geeksforgeeks.org/batch/Amazon-Test-Series
1.15k stars 295 forks source link

06 String --> 07 Binary String #56

Closed FazeelUsmani closed 3 years ago

FazeelUsmani commented 3 years ago
  1. Binary String Basic Accuracy: 51.59% Submissions: 13140 Points: 1 Given a binary string S. The task is to count the number of substrings that start and end with 1. For example, if the input string is “00100101”, then there are three substrings “1001”, “100101” and “101”.

Example 1:

Input: N = 4 S = 1111 Output: 6 Explanation: There are 6 substrings from the given string. They are 11, 11, 11, 111, 111, 1111. Example 2:

Input: N = 5 S = 01101 Output: 3 Explanation: There 3 substrings from the given string. They are 11, 101, 1101. Your Task: The task is to complete the function binarySubstring() which takes the length of binary string n and a binary string a as input parameter and counts the number of substrings starting and ending with 1 and returns the count.

Expected Time Complexity: O(N). Expected Auxiliary Space: O(1).

Constraints: 1 ≤ |S| ≤ 104