Skip to content

Instantly share code, notes, and snippets.

View skyfall17's full-sized avatar

Sky Myers skyfall17

View GitHub Profile
@skyfall17
skyfall17 / ConnectFour
Created January 16, 2018 00:17
ConnectFour with AI (Python)
import random
def p(array):
string = ""
for row in array:
for column in row:
string += str(column)
string += "\n"
string += "1,2,3,4,5,6,7"
print(string)
def isFilled(array):