由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Leetcode online judge的word search是不是用dp?
相关主题
大牛看过来~Word Search这题的优化解是?Leetcode triangle 题目clarification
leetcode: word search backtracking 复杂度leetcode的container with most water题
有最简法code么An online coding test problem
发Amazon三次 Phone Interview 面经,赞RP求祝福一道面试改错题,求答案
这题咋做?有个g家机器人走格子的变体
问个tictactoe的问题请问那个给leetcode题目难易程度list的网站是什么?
Smallest Rectangle Enclosing Black Pixels美国CS就业市场已经严重饱和了
这题如何做,最近看面经碰到两次都不太会做MS面试题
相关话题的讨论汇总
话题: word话题: adjacent话题: leetcode话题: cell话题: given
进入JobHunting版参与讨论
1 (共1页)
S*******e
发帖数: 379
1
complexity O(l*n^2), l 是word的长度。
题目:
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.
s******k
发帖数: 3716
2
可以这么认为。解法就是第一步把第一个字母选出来,写上1,第二步把临近1的第二个
字母选出来,写上2,第三步把临近2的第三个字母选出来,写上3。。。
最后写到n的就是。

The

【在 S*******e 的大作中提到】
: complexity O(l*n^2), l 是word的长度。
: 题目:
: 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.

1 (共1页)
进入JobHunting版参与讨论
相关主题
MS面试题这题咋做?
how to solve this google interview question问个tictactoe的问题
问一道data structure的面试题Smallest Rectangle Enclosing Black Pixels
一道google interview的题目这题如何做,最近看面经碰到两次都不太会做
大牛看过来~Word Search这题的优化解是?Leetcode triangle 题目clarification
leetcode: word search backtracking 复杂度leetcode的container with most water题
有最简法code么An online coding test problem
发Amazon三次 Phone Interview 面经,赞RP求祝福一道面试改错题,求答案
相关话题的讨论汇总
话题: word话题: adjacent话题: leetcode话题: cell话题: given