zl程序教程

您现在的位置是:首页 >  后端

当前栏目

Python 刷Leetcode题库,顺带学英语单词(28)

PythonLeetCode 28 题库 英语单词 顺带
2023-09-14 09:01:29 时间

Word Search

Given a 2D board and a word, find if the word exists in the grid.   [#79]
The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The same letter cell may not be used more than once.

Example:
board =
[
['A','B','C','E'],
['S','F','C','S'],
['A','D','E','E']
]
Given word = "ABCCED", return true.
Given word = "SEE", return true.
Given word = "ABCB", return false.


Word Search II

Given a 2D board and a list of words from the dictionary, find all words in the board.
Each word must be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The same letter cell may not be used more than once in a word.   [#212]

Example:
Input:
board = [
['o','a','a','n'],
['e','t','a','e'],
['i','h','k','r'],
['i','f','l','v']
]
words = ["oath","pea","eat","rain"]
Output: ["eat","oath"]

Note:
1. All inputs are consist of lowercase letters a-z .
2. The values of words are distinct.