class Solution(object):
def compress(self, chars):
"""
:type chars: List[str]
:rtype: int
"""
# https://leetcode.com/problems/string-compression/solution/
anchor = write = 0
for read, c in enumerate(chars):
if read + 1 == len(chars) or chars[read + 1] != c:
chars[write] = chars[anchor]
write += 1
if read > anchor:
for digit in str(read - anchor + 1):
chars[write] = digit
write += 1
anchor = read + 1
return write
Download String Compression.pyLeetcode 443 String Compression problem solution in python3 with explanation. This is the best place to expand your knowledge and get prepared for your next interview.
Feedback is the most important part of any website.
If you have any query, suggestion or feedback, Please feel free to contact us.