https://school.programmers.co.kr/learn/courses/30/lessons/133502
class Solution {
public int solution(int[] ingredient) {
int answer = 0;
StringBuilder sb = new StringBuilder();
for (int i : ingredient) {
sb.append(i);
if(sb.length() >=4 && sb.substring(sb.length()-4,sb.length()).equals("1231")){
sb.delete(sb.length()-4,sb.length());
answer++;
}
}
return answer;
}
}
문자열의 길이가 4이상이고 변경된 문자열이 "1231"로 완성되었을 때 그만큼 지우고 카운트를 늘려준다. 이 과정을 계속 반복해준다.
'개발일지' 카테고리의 다른 글
20240109 (0) | 2024.01.09 |
---|---|
20240108 (0) | 2024.01.08 |
20240104 - 최종 프로젝트 설계 (0) | 2024.01.04 |
20240103 - 심화프로젝트 KPT 회고 (0) | 2024.01.03 |
20240101 - @Transactional (0) | 2024.01.02 |