We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error with the driver code
tree = merkleTree() data = [1, 2, 3, 4] tree.makeTreeFromArray(data)
The text was updated successfully, but these errors were encountered:
error with the driver code tree = merkleTree() data = [1, 2, 3, 4] tree.makeTreeFromArray(data)
can you please tell me how to solve the problem and were to put these lines ?
Sorry, something went wrong.
@andipro123 can you please check this issue !
try this code
in makeTreeFromArray
nodesReqd = __noOfNodesReqd(arr) nodeArr = [num for num in range(1,nodesReqd+1)] self.root = __buildTree(nodeArr, self.root, 0, nodesReqd) __addLeafData(arr,self.root)
No branches or pull requests
error with the driver code
The text was updated successfully, but these errors were encountered: