public char charAt(int index)返回指定索引处的 char 值。索引范围为从 0 到 length() - 1
public int indexOf(String str)返回指定子字符串在此字符串中第一次出现处的索引。
public int lastIndexOf(String str,int fromIndex)返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索
int count=0;
int res=0;
for (int i = 0; i <s.length() ; i++) {
if (s.charAt(i)=='R'){
count++;
}else if(s.charAt(i)=='L'){
count--;
}
if (count==0){
res++;
}
}
return res;