|
|
|
|
|
by Acorn
5506 days ago
|
|
If you don't mind using - and _ then the implementation is very simple. I posted an example in Python and CoffeeScript to SO recently for doing this exact thing. http://stackoverflow.com/questions/5940416/compress-a-series... >>> bin_string = '000111000010101010101000101001110'
>>> encode(bin_string)
'hcQOPgd'
>>> decode(encode(bin_string))
'000111000010101010101000101001110'
|
|