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

Function parseListNodeArray

resources/debug/entry/python3/entry.py:124–132  ·  view source on GitHub ↗
(param)

Source from the content-addressed store, hash-verified

122
123
124def parseListNodeArray(param):
125 if (not isList(param)):
126 onParameterError()
127
128 res = []
129 for i in param:
130 res.append(parseListNode(i))
131
132 return res
133
134
135def parseCharacter(param):

Callers 1

parseParameterFunction · 0.70

Calls 4

isListFunction · 0.85
appendMethod · 0.80
onParameterErrorFunction · 0.70
parseListNodeFunction · 0.70

Tested by

no test coverage detected