LeetCode) 28. Implement strStr()

·2021년 11월 10일
0

Leet_code(Easy)

목록 보기
11/20

needle이 포함되어 있으면, 문자열이 포함되어 있는 index return하고
아니라면, return -1하는 문제.

Language: java

class Solution {
    public int strStr(String haystack, String needle) {
        return haystack.indexOf(needle);
    }
}

'indexOf(문자열)'이라는 좋은 ... 함수가 있어서 쉽고 빠르게 풀 수 있었다.

profile
HAPPY !

0개의 댓글