-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrle.py
45 lines (37 loc) · 1.1 KB
/
rle.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python3
"""
Напишите функции, которые кодируют и декодируют
сторку алгоритмом сжатия, где группы одинаковых
символов исходной строки заменяются на этот символ
и количество его повторений в этой позиции строки.
Пример:
encode_rle('aaaabbсdd') -> '4a2bс2d'
decode_rle('4a2bс2d') -> 'aaaabbcdd'
"""
import re
def encode_rle(inp):
x = 1
cnt = 1
lst = list()
curr = inp[x : x + 1] # noqa E203
for ch in inp:
if ch in curr:
cnt += 1
else:
if cnt == 1:
lst += [str(ch)]
else:
lst += [str(cnt) + str(ch)]
cnt = 1
x += 1
curr = inp[x : x + 1] # noqa E203
return "".join(lst)
def decode_rle(inp):
out = ""
find_all = re.findall(r"(\d*)([a-zA-Z]{1})", inp)
for k in find_all:
if k[0] == "":
out += k[1]
else:
out += k[1] * int(k[0])
return out