im trying to make a word puzzle project but im having a few problems..
i need a 10x10 grid (list of lists) but the important thing about the grid is that
the user fill the grid in the following way:
a b c
d e f
g h i
for a 3x3 grid (letters of each line are separated by TAB)
and i only manage to fill a list when i press ENTER after every letter..
Another problem is after i found a word on the grid.. lets say i searched for the word
"hi" - it is found in the grid at [2][1] and thats what i want to print... but when i try to print it it prints this way: [ 2 ][ 1 ] ..
any help with those 2 things?