Skip to content

Instantly share code, notes, and snippets.

@komly
Last active April 13, 2018 11:02
Show Gist options
  • Save komly/526cc469d62b2595ff3a1969db9b9d1a to your computer and use it in GitHub Desktop.
Save komly/526cc469d62b2595ff3a1969db9b9d1a to your computer and use it in GitHub Desktop.
encode
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