Leetcode 0079. Word Search
Posted on Sun 26 March 2023 in Leetcode • Tagged with backtracking-with-matrix
Question Link : https://leetcode.com/problems/word-search/
Difficulty: Medium
Premium: False
Question
Given an m x n grid of characters board and a string word, return true if word exists in the grid. The word can be constructed from letters of sequentially adjacent cells, where adjacent cells are horizontally or …
Continue reading