You are viewing a single comment's thread. Return to all comments →
from itertools import groupby x = input() def grouper(x): res = [(len(list(g)), int(k)) for k, g in groupby(x)] return print(*res)
Seems like cookies are disabled on this browser, please enable them to open this website
Compress the String!
You are viewing a single comment's thread. Return to all comments →