题解 2873: 字符串p型编码

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

字符串p型编码

摘要:解题思路:注意事项:参考代码:myStr=input().strip()myStr1=""i=1for t in range(len(myStr)-1):    if myStr[t+1]==mySt……

2873: 字符串p型编码

摘要:解题思路:注意事项:参考代码:s = input() + ' ' a = "" b = 1 for i in range(len(s) - 1):     if s[i] ==……

2873: 字符串p型编码

摘要:解题思路:注意事项:参考代码:s = input().strip()s = s + "a"n = len(s)i = 0while i != n-1:    c = 1    while s[i] =……