MCPcopy
hub / github.com/HuberTRoy/leetCode / makeAroundXY

Method makeAroundXY

Array/MaxAreaOfIsland.py:32–36  ·  view source on GitHub ↗
(self, x, y)

Source from the content-addressed store, hash-verified

30
31class Solution(object):
32 def makeAroundXY(self, x, y):
33 return ((x, y-1),
34 (x, y+1),
35 (x-1, y),
36 (x+1, y))
37
38 def maxAreaOfIsland(self, court):
39 """

Callers 1

helperMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected