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){
相關文章
相關標籤/搜索