Skip to content

Commit

Permalink
Update sketch_2025_01_11.py
Browse files Browse the repository at this point in the history
  • Loading branch information
villares committed Jan 12, 2025
1 parent 3c752fe commit fb920e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 2025/sketch_2025_01_11/sketch_2025_01_11.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def start():
matrix[:, 0] = [choice((0, 1)) for _ in range(cols)]
gen = 0
#ruleset = [choice((0, 1)) for _ in range(8)]
ruleset = np.array(list(reversed([1, 0, 1, 0, 0, 1, 1, 0])))
ruleset = np.array([1, 0, 1, 0, 0, 1, 1, 0])
print(ruleset)

def predraw_update():
Expand Down

0 comments on commit fb920e2

Please sign in to comment.