diff --git a/Daily/Word_search.cpp b/Daily/Word_search.cpp index 3e2fc94..efbaec4 100644 --- a/Daily/Word_search.cpp +++ b/Daily/Word_search.cpp @@ -3,7 +3,6 @@ Given a 2D board of letters and a word. Check if the word exists in the board. T adjacent cells only. ie - horizontal or vertical neighbors. The same letter cell can not be used more than once. - Input: board = {{a,g,b,c},{q,e,e,l},{g,b,k,s}}, word = "geeks" Output: 1