문제[프로그래머스] 둘만의 암호정답def solution(s, skip, index): answer = '' sNum = [ord(s[i]) for i in range(0, len(s))] skipNum = [ord(skip[i]) for i in range(0, len(skip))] num = [] for i in range(0, len(sNum)): num = [] for j in range(1, index+1): if sNum[i]+j >= 123: num.append(sNum[i]+j - 26) else: num.append(sNum[i]+j) ..