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
- Number Theory
- Class
- dynamic programming
- Binary Search
- hash table
- geometry
- Stack
- sorting
- java
- Method
- 구현
- simulation
- implement
- SQL
- 파이썬
- Data Structure
- Binary Tree
- string
- Math
- greedy
- 코테
- Tree
- 자바
- bit manipulation
- Matrix
- Counting
- 코딩테스트
- database
- two pointers
- array
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 문자열 바꿔서 찾기 본문
1. Input, Output, Example
- myString의 "A"를 "B"로, "B"를 "A"로 바꾼 문자열의 연속하는 부분 문자열 중 pat이 있으면 1을 아니면 0을 반환
2. Constraint
1) 1 ≤ myString ≤ 100
2) 1 ≤ pat ≤ 10
3) myString과 pat는 문자 "A"와 "B"로만 이루어진 문자열이다.
3. Code
1) 첫 코드(2023/04/25)
class Solution {
public int solution(String myString, String pat) {
pat = pat.replaceAll("A","a").replaceAll("B","A").replaceAll("a","B");
return myString.indexOf(pat)==-1 ? 0 : 1;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 할 일 목록 (0) | 2023.04.25 |
---|---|
[프로그래머스/Lv.0] 마지막 두 원소 (0) | 2023.04.25 |
[프로그래머스/Lv.0] 수 조작하기 1 (0) | 2023.04.25 |
[프로그래머스/Lv.0] 공백으로 구분하기 2 (0) | 2023.04.25 |
[프로그래머스/Lv.0] 전국 대회 선발 고사 (0) | 2023.04.25 |