Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/HuberTRoy/leetCode
/ makeAroundXY
Function
makeAroundXY
Array/FootballFans.py:33–42 ·
view source on GitHub ↗
(x, y)
Source
from the content-addressed store, hash-verified
31
# 6 8
32
33
def
makeAroundXY(x, y):
34
# ((x, y)....)
35
return
((x, y-1),
36
(x, y+1),
37
(x-1, y),
38
(x+1, y),
39
(x-1, y-1),
40
(x-1, y+1),
41
(x+1, y+1),
42
(x+1, y-1))
43
44
def
getFootballFans(court):
45
""
"
Callers
1
helper
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected