Algorithm
Code Examples
#1 Code Example with C++ Programming
Code -
C++ Programming
#include<iostream>
#include<string>
using namespace std;
int main(){
int n, count = 0;
cin>>n;
string s;
cin>>s;
for(int i = 0; i < n-1; i++){
if(s[i] == s[i+1]){
count++;
}
}
cout<<count;
return 0;
}
Copy The Code &
Try With Live Editor
Input
3
RRG
RRG
Output
1
Demonstration
Codeforcess Solution 266-A A. Stones on the Table ,C++, Java, Js and Python,266-A,Codeforcess Solution