MCPcopy Create free account
hub / github.com/acm-clan/algorithm-stone / DataMapNode

Class DataMapNode

src/datamap.py:11–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9 self.tags = tags
10
11class DataMapNode:
12 def __init__(self, name, problems, is_root, parent):
13 self.name = name
14 self.problems = problems
15 self.is_root = is_root
16 self.parent = parent
17
18 def __repr__(self):
19 return "%s %s" % (self.name, self.is_root)
20
21 def __str__(self):
22 return self.name
23
24class DataMap:
25 def __init__(self, data):

Callers 1

consume_nodeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected