Problem 444 -- Encoder and Decoder
Tips
A simple exercise on string handling and ASCII conversion.
The encoding part is straight forward. The decoding part is a little tricky. You have to determine whether the next number has two digits or three digits. No very difficult because the range of allowed chars are very limited.
.