You are given an m x n grid of lowercase letters and a list of words. Write a function that returns all words from the list that can be found in the grid following these rules:
Your function should have the following signature (or similar, depending on your programming language):
function findWords(grid: List[List[char]], words: List[string]) -> List[string]
The input parameters are:
Your output should be an array (or list) containing all the words that can be found in the grid.
Consider efficiency in your implementation, as both the grid and the list of words can be large. Avoid unnecessary computations and strive for a solution that scales well with input size.
Good luck!