Skip to content

Instantly share code, notes, and snippets.

View lkelly93's full-sized avatar

Luke Kelly lkelly93

  • Washington
View GitHub Profile
@SproutSeeds
SproutSeeds / .py
Created April 9, 2019 01:48
cellCompete - Code Challenge
cell_arr = [0,1,0,1,1,0,0,1]
# Answer for 1 day should be...
# arr = [1,0,0,1,1,1,1,0]
# Answer for 2 days should be...
# arr = [0,1,1,1,0,0,1,1]
# Answer for 3 days should be...
# arr = [1,1,0,1,1,1,1,1]