carloscn / carloscn/structstudy

leetcode79: word_search

Open
#441 1 comment 0 reactions 1 assignee Claimed by @carloscn View on GitHub
Lang-c/c++ Lang-rust Level-middle 数组 查找
Dominant language
C
Stars
4
Forks
1
PR merge metrics
No merged PRs in 30d

Description

### 描述

给定一个 m x n 二维字符网格 board 和一个字符串单词 word 。如果 word 存在于网格中,返回 true ;否则,返回 false 。

单词必须按照字母顺序,通过相邻的单元格内的字母构成,其中“相邻”单元格是那些水平相邻或垂直相邻的单元格。同一个单元格内的字母不允许被重复使用。


![image](https://github.com/carloscn/structstudy/assets/16836611/8648abf4-f0e4-451c-b5cd-7b29afa026f5)
输入:board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCCED"
输出:true

![image](https://github.com/carloscn/structstudy/assets/16836611/97ebf133-822b-4791-b9f6-f28166a41239)
输入:board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "SEE"
输出:true

![image](https://github.com/carloscn/structstudy/assets/16836611/536352cc-3d6d-42bc-ae99-fbe3e24478fe)
输入:board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCB"
输出:false

提示:

m == board.length
n = board[i].length
1 <= m, n <= 6
1 <= word.length <= 15
board 和 word 仅由大小写英文字母组成

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.