Shortest Word Distance
Given a list of words and two words word1 and word2, return the shortest distance between these two words in the list.
Example:
Assume that words = ["practice", "makes", "perfect", "coding", "makes"]
.
Note: You may assume that word1 does not equal to word2, and word1 and word2 are both in the list.
java 比较字符串是否一样 记得要用equals
Last updated