본문 바로가기
알고리즘 문제풀이/Programmers - 자바

프로그래머스 - 문자열 밀기

by 올리브영 2023. 3. 23.
728x90
반응형
class Solution {
    public int solution(String A, String B) {
        int answer = 0;
        
        if(A.equals(B)){
            return answer;
        }
        for(int i =0; i<A.length(); i++){
            String a = A.substring(B.length()-1 ,B.length());
            A = a + A.substring(0, B.length()-1);
            answer++;
            if(A.equals(B)){
                return answer;
            }
        }
        return -1;
    }
}
728x90
반응형