Last active
April 13, 2018 11:02
-
-
Save komly/526cc469d62b2595ff3a1969db9b9d1a to your computer and use it in GitHub Desktop.
encode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_char(c, i): | |
return c if i == 1 else '%s%d' % (c, i) | |
def encode(s): | |
if s == '': | |
return '' | |
res = [] | |
last_char = s[0] | |
i = 1 | |
for c in s[1:]: | |
if c != last_char: | |
res.append(get_char(last_char, i)) | |
last_char = c | |
i = 1 | |
else: | |
i += 1 | |
res.append(get_char(last_char, i)) | |
return ''.join(res) | |
def encode2(s): | |
if len(s) == 0: | |
return s | |
last_char = s[0] | |
last_pos = 0 | |
n = 1 | |
for i, c in enumerate(s[1:]): | |
if c != last_char: | |
num = bytearray([last_char]) | |
if n > 1: | |
num.extend(str(n).encode()) | |
s[last_pos:len(num)] = num | |
last_pos = last_pos + len(num) | |
last_char = c | |
n = 1 | |
else: | |
n += 1 | |
num = bytearray([last_char]) | |
if n > 1: | |
num.extend(str(n).encode()) | |
s[last_pos:len(num)] = num | |
last_pos = last_pos + len(num) | |
return s[:last_pos] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment