Skip to content

Latest commit

 

History

History
59 lines (43 loc) · 1.14 KB

0079-word-search.adoc

File metadata and controls

59 lines (43 loc) · 1.14 KB

79. Word Search

{leetcode}/problems/word-search/[LeetCode - Word Search^]

Given a 2D board and a word, find if the word exists in the grid.

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.

思路分析

{image_attr}

{image_attr}

一刷
link:{sourcedir}/_0079_WordSearch.java[role=include]
二刷
link:{sourcedir}/_0079_WordSearch_2.java[role=include]