This commit is contained in:
恍兮惚兮 2024-08-03 21:01:55 +08:00
parent 7a502772fb
commit 0db3063829

View File

@ -33,7 +33,7 @@ def _2_f(line, args):
dumptime = Counter()
cntx = 1
lastc = None
for c in line:
for c in list(line) + [0]:
if c != lastc:
dumptime[cntx] += 1
lastc = c