-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathreplace_words.py
28 lines (25 loc) · 912 Bytes
/
replace_words.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class Solution:
def replaceWords(self, dict: List[str], sentence: str) -> str:
if len(dict) == 0:
return ""
'''
sentences = sentence.split()
res_string = ""
for i,word in enumerate(sentences):
print(word)
if word in dict: #directly append
sentences[i] = word #pre dertermined optimisation
else:
cword = ""
for w in word: #check for each char in word
cword += w
if cword in dict:
sentences[i] = cword
return " ".join(sentences)
'''
sentences = sentence.split(" ")
for d in dict:
for i,w in enumerate(sentences):
if w.startswith(d):
sentences[i] = d
return " ".join(sentences)