관리 메뉴

Jerry

[#97][프로그래머스][입문] 문자열 밀기 본문

Problem Solving/Algorithm 문제 풀기

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

juicyjerry 2023. 2. 7. 19:14
반응형
function solution(A, B) {
  let cnt = 0;
  if (A === B) return 0;
  
  let temp = A;
  for (let x = 0; x < A.length; x++) {
      if (temp === B) {
          cnt = x;
          break;
      }
      temp = temp[A.length - 1] + temp.slice(0, A.length - 1);
  }
  return !!cnt ?  cnt : -1;
}
반응형