MCPcopy Index your code
hub / github.com/geekcomputers/Python / create_canvas

Function create_canvas

game_of_life/game_o_life.py:48–50  ·  view source on GitHub ↗
(size)

Source from the content-addressed store, hash-verified

46
47
48def create_canvas(size):
49 canvas = [[False for i in range(size)] for j in range(size)]
50 return canvas
51
52
53def seed(canvas):

Callers 2

runFunction · 0.85
game_o_life.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected