This is a coding exercise. Suppose there is a table of letters and a number of words. I have to find positions of the words in the table. A word may begin anywhere in the table and may be oriented either vertically of horizontally. (We can assume that a row/column may contain only one word).
For example:
table = xabcx
xxxdx
xxfex
words = ["abc", "edc", "fe"]
expected output is (0,1), (2,3), (2,2)
The straightforward solution is to loop over all rows/columns and check if each row/column contains any of the words. It takes O(number of columns * number of rows * number of words * word length). Is there a better solution? Maybe I should pre-process the words list to build a more efficient data structure?