알고리즘

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

HHB 2023. 10. 9. 19:14
def solution(A: str, B: str) -> int:
    result = 0

    while result != len(A):
        if A == B:
            return result
        A = A[-1] + A[:-1]
        result += 1

    return -1
728x90
반응형
LIST