Leetcode Day 尋找字串中第一次出現的索引解釋
問題如下:
給定兩個字串needle和haystack,傳回needle在haystack中第一次出現的索引,如果needle不是haystack的一部分,則傳回-1。
範例1:
Input: haystack = "sadbutsad", needle = "sad" Output: 0 Explanation: "sad" occurs at index 0 and 6. The first occurrence is at index 0, so we return 0.
登入後複製
範例2:
Input: haystack = "leetcode", needle = "leeto" Output: -1 Explanation: "leeto" did not occur in "leetcode", so we return -1.
登入後複製
我是這樣解決的:
這是第一個簡單的問題,其實很簡單。只需使用內建的 index() 函數即可!
這是它的工作原理:
- 檢查「needle」是否是「haystack」的子字串
- 如果是,則傳回第一次出現 'needle' 的索引
- 否則如果沒有找到“needle”,則回傳-1
if needle in haystack: return haystack.index(needle) else: return -1
登入後複製
這是完整的解決方案:
class Solution: def strStr(self, haystack: str, needle: str) -> int: return haystack.index(needle) if needle in haystack else -1
登入後複製
以上是Leetcode Day 尋找字串中第一次出現的索引解釋的詳細內容。更多資訊請關注PHP中文網其他相關文章!
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。
