28. Implement strStr()

JJ·2020년 12월 20일
0

Algorithms

목록 보기
19/114
class Solution {
    public int strStr(String haystack, String needle) {
        if (needle.equals("")) {
            return 0;
        }
        
        if (haystack.length() < needle.length()) {
            return -1; 
        }
        
        char cur = needle.charAt(0); 
        int loc = 0;
        int needleL = needle.length() - 1;
        
        for (int i = 0; i < haystack.length() - needleL; i++) {
            if (haystack.charAt(i) == cur) {
                if (haystack.substring(i, i + needleL + 1).equals(needle)) {
                    return i;
                }
            }
        }
        
        return -1; 
    }
}

Runtime: 0 ms, faster than 100.00% of Java online submissions for Implement strStr().
Memory Usage: 38.8 MB, less than 38.46% of Java online submissions for Implement strStr().

쉬운데.... 꽃남보느라 300년걸림 ㅠ

0개의 댓글

관련 채용 정보