[LeetCode] 28. Find the Index of the First Occurrence in a String

Chobby·2024년 8월 27일
1

LeetCode

목록 보기
65/194

haystack의 문자열에서 needle이 등장하는 인덱스를 반환하는 문제이다.

없으면 -1을 반환한다는 전제에서 indexOf를 사용하면 쉬운 풀이가 가능하다는 것을 파악하였음

😎풀이

function strStr(haystack: string, needle: string): number {
    return haystack.indexOf(needle)
};
profile
내 지식을 공유할 수 있는 대담함

0개의 댓글