📜  在 python hackrank 中的函数中设置默认值 压缩字符串! - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:15.496000             🧑  作者: Mango

代码示例1
from itertools import groupby
List=input()
for c, items in groupby(List):    
    print(tuple([len(list(items)),int(c)]), end=' ')