MCPcopy Create free account
hub / github.com/ccagml/leetcode-extension / TreeNode

Class TreeNode

resources/debug/entry/python3/entry.py:22–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20
21
22class TreeNode:
23 def __init__(self, x):
24 self.val = x
25 self.left = None
26 self.right = None
27
28
29def onParameterError():

Callers 1

parseTreeNodeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected