You are viewing a single comment's thread. Return to all comments →
from itertools import groupby s=list(input()) for k,g in groupby(s): print(f"({len(list(g))}, {k})", end=" ")
Seems like cookies are disabled on this browser, please enable them to open this website
An unexpected error occurred. Please try reloading the page. If problem persists, please contact support@hackerrank.com
Compress the String!
You are viewing a single comment's thread. Return to all comments →
from itertools import groupby s=list(input()) for k,g in groupby(s): print(f"({len(list(g))}, {k})", end=" ")