Skip to content
Advertisement

word search in python :a search which return the indices the letters

#the following program checks the words in a 2D array and returns a nested list of the indices of the words.the algorithm checks the words in horizontal direction(left &right),vertical direction (upward and downward) and diagonally(left to right in the downward direction) **problem that i’am facing ** #the program returns correct indices for some of the words but for some it returns none.for some words the program crashes giving an index error(list index out of range) code

JavaScript

Advertisement

Answer

You need to check that the indices are actually valid for the array. If you have a 3×3 array and i=2,j=2, then j+1 will be off the board and Python will give you an IndexError. You have to be even more careful with negative indices as those will not give an error as board[-1][-1] is the same as board[2][2].

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement