Instructions. In this kata you are required to, given a string, replace every letter with its position in the alphabet. If anything in the text isn't a letter, ignore it and don't return it. "a" = 1, "b" = 2, etc. 이 문제를 풀기 위해서는 받은 텍스트를 각 알파벳의 인덱스로 변환해야 한다. 만약, 받은 텍스트에 문자가 아닌 것이 포함되어 있다면, 무시하고 반환값에 포함시키지 않는다. Example. alphabetPosition("The sunset sets at twelve o' clock.") result. "20 8 5 19 21 1..