https://school.programmers.co.kr/learn/courses/30/lessons/120921
function solution(A, B) {
return (B+B).indexOf(A);
}
B+B를 하면 B문자열이 합쳐진다. 예를들어, "ohell" 문자열이 있을 때,
"ohellohell"로 합쳐진다. indexOf(A)를 통해 hello를 찾기위해 몇칸 옮겨야하는지 알 수 있다. indexOf를 활용해 몇번째 칸에 있는지 확인하는 방법을 통해 해결한다.
const str = "hello world";
const index1 = str.indexOf("h"); // returns 0
const index2 = str.indexOf("w"); // returns 6
const index3 = str.indexOf("x"); // returns -1