Count Substrings With All 1s
You are given a string s containing "1"s and "0"s. Return the number of substrings that contain only "1"s. Mod the result by 10 ** 9 + 7.
Constraints
0 ≤ n ≤ 100,000wherenis the length ofs
https://binarysearch.com/problems/Count-Substrings-With-All-1s
Examples
Example 1
Input
- s =
111001
Output
- answer =
7
Explanation
Here are all the substrings containing only "1"s:
"1""1""1""1""11""11""111"
Leave a comment