python写剑指offer每次提交都是返回非0错误, 请问怎么提交,具体的格式是什么 例如:重建二叉树 我的代码 class Solution: # 返回构造的TreeNode根节点 def reConstructBinaryTree(self, pre, tin:list): print(pre, tin) if len(pre) == 0 or len(pre) == 0: return None # 先序遍历中的第一个元素为根 root = TreeNode(pre[...