-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathstring_compression.py
27 lines (24 loc) · 974 Bytes
/
string_compression.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
from typing import List
from collections import deque
class Solution:
def compress(self, chars: List[str]) -> int:
compressed_strings = deque()
current_char, count,length = chars[0], 0, 0
for character in chars:
if character == current_char:
count += 1
else:
compressed_strings.append((current_char, str(count)))
length += 1 + (len(str(count)) if count > 1 else 0)
current_char = character
count = 1
compressed_strings.append((current_char, str(count)))
length += 1 + (len(str(count)) if count > 1 else 0)
i = 0
for compressed_string in compressed_strings:
character, count = compressed_string
chars[i] = character
if int(count) > 1:
chars[i + 1:i + 1 + len(count)] = count
i += 1 + (len(count) if int(count) > 1 else 0)
return length