Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~159 People Reached
Favorite Forums
Favorite Tags
Member Avatar for moazmizo

hi, i have to make a simple sudoku solver, i am done 3/4 of it but i'm having a little trouble on somethings, here is what i've got so far [CODE] import copy def display(A): if A: for i in range(9): for j in range(9): if type(A[i][j]) == type([]): print …

Member Avatar for flufflekins
0
108
Member Avatar for moazmizo

hi, i have to make a sudoku solver using python quickdraw, i've started on it and this is what i got so far here is the link to the assignment [url]http://pages.cpsc.ucalgary.ca/~zongpeng/CPSC231/assignments/A4/a4.pdf[/url] [CODE] def solveRows(): """eliminates solved numbers by row""" for x in range(0, 81, 9): row = puzzle[x : x+9]#loops …

0
51