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

Class Node

resources/debug/entry/python3/problems/133.py:11–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10
11class Node:
12 def __init__(self, val, neighbors):
13 self.val = val
14 self.neighbors = neighbors
15
16
17def parseNode(param, nodeMap):

Callers 1

parseNodeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected