LeetCode 696. Count Binary Substrings

696. Count Binary Substrings class Solution { public: int countBinarySubstrings(string s) { int count=0,size=0; char prev=s[0]; vector<int> group; for(auto x:s){
相关文章
相关标签/搜索