예제 #1
0
파일: tests.py 프로젝트: stedevine/advent
 def test_turn_on(self):
     matrix = [[0 for x in range (5)] for x in range(5)]
     LightGrid.processInstruction("turn on 1,1 through 3,3",matrix)
     self.assertEqual(9, LightGrid.countOnLights(matrix))
예제 #2
0
파일: part1.py 프로젝트: stedevine/advent
# For a 1000 x 1000 grid of lights (which are initially off)
# process a list of instructions that will
# turn on, turn off or toggle a rectangular range of lights
# example: toggle 461,550 through 564,900
# return the final count of lights that are on
from lightGrid import LightGrid

matrix = [[0 for x in range (1000)] for x in range(1000)]
f = open('input.txt','r')
for line in f:
    LightGrid.processInstruction(line,matrix)

print(LightGrid.countOnLights(matrix))