力扣100215-按键变更的次数

按键变更的次数

题目链接

解题思路

  1. 我们发现只要相邻的两个字母不一样(大小写算一样),那么按键变更次数就要加1
class Solution {
public:
    int countKeyChanges(string s) {
        int ans = 0;
        for(int i = 1;i

你可能感兴趣的:(算法-每日一练,leetcode,算法)