class Solution {
public int solution(String myString, String pat) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < myString.length(); i++) {
if (myString.charAt(i) == 'A') {
sb.append("B");
} else {
sb.append("A");
}
}
return sb.toString().contains(pat) ? 1 : 0;
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[프로그래머스] 올바른 괄호 (0) | 2023.05.13 |
---|---|
[프로그래머스] 완주하지 못한 선수 (0) | 2023.05.13 |
[백준] 1427번 (0) | 2023.04.10 |
[백준] 11286번 (0) | 2023.04.07 |
[백준] 2164번 (0) | 2023.04.07 |