We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
#Enter Your Code Here
n = len(s)
i = 0
node = root
while i < n:
if s[i] == "0":
node = node.left
if node.left == None and node.right == None:
print(node.data, end = "")
node = root
else:
node = node.right
if node.left == None and node.right == None:
print(node.data, end = "")
node = root
i = i + 1
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Tree: Huffman Decoding
You are viewing a single comment's thread. Return to all comments →
Python code:
def decodeHuff(root, s):