프로그래밍/Algorithm

[프로그래머스] 문자열 나누기

일단개그하다 2022. 12. 12. 23:28

문제

https://school.programmers.co.kr/learn/courses/30/lessons/140108

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

접근 방법 및 풀이

별도의 풀이가 있는 것이 아니고 문제 설명대로 구현

public class Q30_140108 {
    public int solution(String s) {
        String[] list = s.split("");
        int length = list.length;
        if (length == 0) {
            return 0;
        }

        int answer = 0;
        int index = 0;

        int targetCount = 0;
        int count = 0;
        String target = null;

        while (index < length) {
            if (target == null || targetCount == count) {
                target = list[index];
                answer++;
                targetCount = 1;
                count = 0;
                index++;
                continue;
            }

            if (target.equals(list[index])) {
                targetCount++;
            } else {
                count++;
            }

            index++;
        }

        return answer;
    }
}