I'm trying to make a 4x4 sudoku solver in Python (I'm only a beginner!) and while trying to define a function to clean up my code somewhat, I ran across some strange behavior I don't really understand. Apparently, there's a difference between this:
sudoku = "0200140000230040"
sudoku = map(lambda x: '1234' if x=='0' else x, list(sudoku))
for i in range(16):
for j in range(4):
if sudoku[i] == str(j+1):
for k in range(4):
if len(sudoku[i/4*4+k]) > 1:
sudoku[i/4*4+k] = sudoku[i/4*4+k].translate(None, str(j+1))
for k in range(4):
if len(sudoku[4*k+i%4]) > 1:
sudoku[4*k+i%4] = sudoku[4*k+i%4].translate(None, str(j+1))
And this one:
sudoku = "0200140000230040"
def sd(l):
for k in range(4):
if len(sudoku[l]) > 1:
sudoku[l] = sudoku[l].translate(None, str(j+1))
sudoku = map(lambda x: '1234' if x=='0' else x, list(sudoku))
for i in range(16):
for j in range(4):
if sudoku[i] == str(j+1):
sd(i/4*4+k)
sd(4*k+i%4)
The strange expressions are for checking the rows and columns (boxes aren't finished yet). I'm terribly sorry for wasting your time if this kind of thing has been asked already, but try running both code snippets and observing the different results you get. Thanks in advance.
(I have this weird feeling I'm going to get yelled at. Huh.)