赞
踩
1、直接按照题目做就行
- class Solution {
- public:
- string replaceDigits(string s) {
- int thesize=s.size();
- for(int i=1;i<thesize;i+=2)
- s[i]=s[i-1]+s[i]-'0';
- return s;
- }
- };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。