Skip to content

Instantly share code, notes, and snippets.

@calebrob6
Created September 19, 2013 14:06
Show Gist options
  • Save calebrob6/6623998 to your computer and use it in GitHub Desktop.
Save calebrob6/6623998 to your computer and use it in GitHub Desktop.
f = open("prob3.txt","r")
num = int(f.readline().strip())
def check(board,x,y,n,char):
for i in range(num):
board = []
for j in range(5):
board.append(list(f.readline().strip()))
print board
f.close()
@calebrob6
Copy link
Author

2
AABBA
BAAAB
AAABA
ABAAB
BAAAB
AAAAA
AAAAA
BAAAA
ABAAA
AABAA

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment