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
- Data Structure
- 파이썬
- geometry
- greedy
- 자바
- array
- hash table
- dynamic programming
- Binary Search
- bit manipulation
- sorting
- implement
- Counting
- java
- Class
- 코딩테스트
- 코테
- Method
- Stack
- Math
- Matrix
- two pointers
- database
- Tree
- Number Theory
- simulation
- SQL
- 구현
- Binary Tree
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 문자열이 몇 번 등장하는지 세기 본문
1. Input, Output, Example
- myString에서 pat이 등장하는 횟수를 반환
2. Constraint
1) 1 ≤ myString ≤ 1000
2) 1 ≤ pat ≤ 10
3. Code
1) 첫 코드(2023/05/01)
class Solution {
public int solution(String myString, String pat) {
int answer = 0;
for(int i=0 ; i<=myString.length()-pat.length() ; i++)
if(myString.substring(i,i+pat.length()).equals(pat))
answer++;
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 리스트 자르기 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 조건 문자열 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 빈 배열에 추가, 삭제하기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 세 개의 구분자 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 글자 지우기 (0) | 2023.05.01 |