Re: [閒聊] 每日leetcode

作者: DJYOMIYAHINA (通通打死)   2024-12-02 22:27:21
想說要用trie什麼之類的
看到綠色的標題
我就懶了
我好爛
def isPrefixOfWord(self, sentence: str, searchWord: str) -> int:
for i, w in enumerate(sentence.split(' ')):
if w.startswith(searchWord):
return i+1
return -1
作者: oin1104 (是oin的說)   2024-12-02 22:28:00
我寫超長 我哭了
作者: sixB (6B)   2024-12-02 22:33:00
好好笑 我一開始看也想說字典樹

Links booklink

Contact Us: admin [ a t ] ucptt.com