From 0f650a6ed9f4d1fd797d5c46e06355d165831a99 Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Wed, 23 Aug 2023 10:27:40 -0700 Subject: [PATCH] initialized free link of problem --- .../Arrays_and_Hashing/Encode_Decode_Strings.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 NeetCodeRoadmap/Arrays_and_Hashing/Encode_Decode_Strings.py diff --git a/NeetCodeRoadmap/Arrays_and_Hashing/Encode_Decode_Strings.py b/NeetCodeRoadmap/Arrays_and_Hashing/Encode_Decode_Strings.py new file mode 100644 index 0000000..e4c3aec --- /dev/null +++ b/NeetCodeRoadmap/Arrays_and_Hashing/Encode_Decode_Strings.py @@ -0,0 +1,9 @@ +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 \ No newline at end of file