9 lines
185 B
Python
9 lines
185 B
Python
def encode(self, strs):
|
|
# write your code here
|
|
|
|
"""
|
|
@param: str: A string
|
|
@return: decodes a single string to a list of strings
|
|
"""
|
|
def decode(self, str):
|
|
# write your code here |