第一题
/*一次操作,字符串中所有的大写的字母都要复制一份 k次操作。 求最终的字符串长度
"sABc",2
10
*/
class Solution {
public:
int getLength(string str, int k) {
// write code here
int big=0, small=0;
for(int i=0; i<str.size(); i++)if(str[i]>='A' && str[i]<='Z')big++;else small++;
return small + pow(2,k)*big;
}
};