Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 필기
- If
- 알고리즘
- 항해99
- 서평
- Jackson
- LeetCode
- 뇌정리
- 스터디
- git
- 2020년 정보처리기사 4회
- post
- 2020년 일정
- 미니프로젝트
- 성적프로그램
- Til
- java
- sqldeveloper
- 책리뷰
- 코드숨
- 함수형 코딩
- 주간회고
- Real MySQL
- hackerrank
- algorithms
- 2020년 제4회 정보처리기사 필기 문제 분석
- 회고
- jsp
- Python
- 정보처리기사
Archives
- Today
- Total
목록Implement strStr() (1)
조컴퓨터
28. Implement strStr()
? indexOf 로 바로 풀린다. class Solution { public int strStr(String haystack, String needle) { int num = haystack.indexOf(needle); if( needle.length() == 0 ) { num = 0; } return num; } } 너무 빨리 끝나서 다른 방향을 더 생각해 보았다. class Solution { public int strStr(String haystack, String needle) { if( needle.length() == 0 ) return 0; if( haystack.length() == 0 ) return -1; int i = 0, j = 0; while( i
LeetCode/Algorithms
2021. 10. 20. 00:00