Shortest Completing Word — LeetCode 748 Python Solution
- Problem
- #748
- Pattern
- Hash Map
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Given a string licensePlate and an array of strings words, find the shortest completing word in words. A completing word is a word that contains all the letters in licensePlate.
Example
- Input
- licensePlate = "1s3 PSt", words = ["step","steps","stripe","stepple"]
- Output
- "steps"
- Explanation
- licensePlate contains letters 's', 'p', 's' (ignoring case), and 't'.
Python solution
class Solution:
def shortestCompletingWord(self, licensePlate: str, words: List[str]) -> str:
cnt = Counter(c.lower() for c in licensePlate if c.isalpha())
ans = None
for w in words:
if ans and len(w) >= len(ans):
continue
t = Counter(w)
if all(v <= t[c] for c, v in cnt.items()):
ans = w
return ansComplexity
| Measure | Complexity |
|---|---|
| Time | O(n \times |\Sigma|) |
| Space | O(|\Sigma|) auxiliary |
Pattern: Hash Map
Trade memory for time: remember what you have seen so the second pass never happens. LeetCode 748. Shortest Completing Word is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Hash Table.
The hash map guide has the Python template for the pattern and the 709 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 748. Shortest Completing Word?
- LeetCode 748. Shortest Completing Word is rated Easy on LeetCode.
- What is the time complexity of LeetCode 748. Shortest Completing Word?
- The Python solution on this page runs in O(n \times |\Sigma|).
- What is the space complexity of LeetCode 748. Shortest Completing Word?
- The Python solution on this page uses O(|\Sigma|) auxiliary space.
- What topics does LeetCode 748. Shortest Completing Word cover?
- LeetCode 748. Shortest Completing Word is tagged Array, Hash Table and String on LeetCode.