> For the complete documentation index, see [llms.txt](https://maksimdan.gitbook.io/interview-practice-problems/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://maksimdan.gitbook.io/interview-practice-problems/leetcode_sessions/245-shortest-word-distance-iii.md).

# 245 Shortest Word Distance III

This is a **follow up** of [Shortest Word Distance](https://leetcode.com/problems/shortest-word-distance). The only difference is now word1 could be the same as word2.

Given a list of words and two words word1 and word2, return the shortest distance between these two words in the list.

word1 and word2 may be the same and they represent two individual words in the list.

For example,\
Assume that words =`["practice", "makes", "perfect", "coding", "makes"]`.

Given word1=`“makes”`,word2=`“coding”`, return 1.\
Given word1=`"makes"`,word2=`"makes"`, return 3.

**Note:**\
You may assume word1 and word2 are both in the list.

**The Idea:** Same as the first except we account for whether the indices are the same (an indication that the words are also the same).

**Complexity:** O(2n) time and O(n) space

```python
from collections import defaultdict
import sys


class Solution:
    def shortestWordDistance(self, words, word1, word2):
        """
        :type words: List[str]
        :type word1: str
        :type word2: str
        :rtype: int
        """
        self.d = defaultdict(list)
        for i, word in enumerate(words):
            self.d[word].append(i)

        dist = sys.maxsize
        for loc1 in self.d[word1]:
            for loc2 in self.d[word2]:
                if loc1 != loc2:
                    dist = min(dist, abs(loc1 - loc2))
        return dist
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://maksimdan.gitbook.io/interview-practice-problems/leetcode_sessions/245-shortest-word-distance-iii.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
