[0243] 最短单词距离
- GitHub
- http://leetcode.xuezhisd.top/post/ff948d6b.html
- https://leetcode.com/problems/shortest-word-distance
- https://leetcode-cn.com/problems/shortest-word-distance
题目描述
给定一个单词列表和两个单词 word1 和 word2,返回列表中这两个单词之间的最短距离。
示例:
假设 words = ["practice", "makes", "perfect", "coding", "makes"]
输入: word1 =“coding”
, word2 =“practice”
输出: 3
输入: word1 ="makes"
, word2 ="coding"
输出: 1
注意:
你可以假设 word1 不等于 word2, 并且 word1 和 word2 都在列表里。
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |