<프로그래머스 문제풀이: [카카오 인턴] 키패드 누르기> Level 1 - 파이썬
풀고 나서 카카오 인턴 문제인 것을 깨달았다. 엄청나게 고민을 오랫동안 한 문제이다: def solution(numbers, hand): place = [10, 12] left_hand = [1,4,7,10] right_hand = [3,6,9,12] neutral_hand = [2,5,8,0] coordinates = {10: [0,0], 7:[0,1], 4:[0,2], 1:[0,3], 0:[1,0], 12:[2,0], 8:[1,1], 5:[1,2], 2:[1,3], 9:[2,1], 6:[2,2], 3:[2,3]} l_len = 0 r_len = 0 result = '' for i in numbers: if i in left_hand: result += 'L' place[0] = i elif i in ..