-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathWordSearch.cs
executable file
·43 lines (39 loc) · 2.06 KB
/
WordSearch.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Source : https://leetcode.com/problems/word-search/
// Author : codeyu
// Date : Tuesday, January 24, 2017 11:57:39 PM
/**********************************************************************************
*
*
* 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.
*
*
*
* For example,
* Given board =
*
* [
* ['A','B','C','E'],
* ['S','F','C','S'],
* ['A','D','E','E']
* ]
*
*
* word = "ABCCED", -> returns true,
* word = "SEE", -> returns true,
* word = "ABCB", -> returns false.
*
*
**********************************************************************************/
using System;
using System.Collections.Generic;
using Algorithms.Utils;
namespace Algorithms
{
public class Solution079 {
public static bool Exist(char[,] board, string word) {throw new NotImplementedException("TODO");
}
}}