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

Method check_flask

src/leetcode.py:93–97  ·  view source on GitHub ↗
(self, id)

Source from the content-addressed store, hash-verified

91 return False
92
93 def check_flask(self, id):
94 for k in self.flasks:
95 if k.startswith(id+"."):
96 return k
97 return ""
98
99 def get_problem(self, id):
100 content = self.get_problem_content(id)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected