Word Search II
Try to solve the Word Search II problem.
We'll cover the following
Statement
You are given a list of strings that you need to find in a 2D grid of letters such that the string can be constructed from letters in sequentially adjacent cells. The cells are considered sequentially adjacent when they are neighbors to each other either horizontally or vertically. The solution should return a list containing the strings from the input list that were found in the grid.
Constraints:
- rows, columns
-
words.length
-
words[i].length
grid[i][j]
is an uppercase English letter.words[i]
consists of uppercase English letters.- All the strings are unique.
Note: The order of the strings in the output does not matter.
Examples
Create a free account to view this lesson.
By signing up, you agree to Educative's Terms of Service and Privacy Policy