LeetCode/NeetCodeRoadmap/Arrays_and_Hashing/Encode_Decode_Strings.py

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