https://programmers.co.kr/learn/courses/30/lessons/67256
스마트폰 전화 키패드의 각 칸에 다음과 같이 숫자들이 적혀 있습니다.
이 전화 키패드에서 왼손과 오른손의 엄지손가락만을 이용해서 숫자만을 입력하려고 합니다.
맨 처음 왼손 엄지손가락은 * 키패드에 오른손 엄지손가락은 # 키패드 위치에서 시작하며, 엄지손가락을 사용하는 규칙은 다음과 같습니다.
순서대로 누를 번호가 담긴 배열 numbers, 왼손잡이인지 오른손잡이인 지를 나타내는 문자열 hand가 매개변수로 주어질 때, 각 번호를 누른 엄지손가락이 왼손인 지 오른손인 지를 나타내는 연속된 문자열 형태로 return 하도록 solution 함수를 완성해주세요.
제한사항
입출력 예제
def solution(numbers, hand):
left_key = [1,4,7]
right_key = [3,6,9]
hand_position = ['*','#']
position = {1:(0,0), 2:(0,1), 3:(0,2),
4:(1,0), 5:(1,1), 6:(1,2),
7:(2,0), 8:(2,1), 9:(2,2),
'*':(3,0), 0:(3,1), '#':(3,2),}
result = ''
for num in numbers:
if num in left_key:
result += 'L'
hand_position[0] = num
elif num in right_key:
result += 'R'
hand_position[1] = num
else:
near_hand = get_near_hand(position, hand_position[0], hand_position[1], num, hand)
if near_hand == 'L':
result += 'L'
hand_position[0] = num
else:
result += 'R'
hand_position[1] = num
return result
def get_near_hand(position, l, r, num, hand):
left_distance = abs(position[l][0] - position[num][0]) + abs(position[l][1] - position[num][1])
right_distance = abs(position[r][0] - position[num][0]) + abs(position[r][1] - position[num][1])
if left_distance == right_distance:
near_hand = 'L' if hand == 'left' else 'R'
else:
near_hand = 'L' if left_distance < right_distance else 'R'
return near_hand