티스토리 뷰
What I Learned/Algorithm Practice
[programmers - python] Lv.1: 키패드 누르기 (2020 카카오 인턴십)
Interrobang 2023. 1. 21. 11:23문제 링크
문제 풀이
def findCoordinate(keynum):
keypad = [[1,2,3],[4,5,6],[7,8,9],['*', 0, '#']]
return [[i,j] for i in range(4) for j in range(3) if keypad[i][j]==keynum][0]
def calDistance(a, b):
return sum([abs(findCoordinate(a)[i]-findCoordinate(b)[i]) for i in [0,1]])
def solution(numbers, hand):
left_location = '*'
right_location = '#'
answer = ''
for num in numbers:
if num in [1, 4, 7]:
answer += 'L'
left_location = num
elif num in [3, 6, 9]:
answer += 'R'
right_location = num
else:
if calDistance(left_location, num) < calDistance(right_location, num):
answer += 'L'
left_location = num
elif calDistance(left_location, num) > calDistance(right_location, num):
answer += 'R'
right_location = num
else:
if hand == 'left':
answer += 'L'
left_location = num
elif hand == 'right':
answer += 'R'
right_location = num
return answer
*key point: 특정 키패드의 좌표를 탐색하는 함수, 두 키패드의 거리를 측정하는 함수를 만들어 활용한다.
'What I Learned > Algorithm Practice' 카테고리의 다른 글
[백준 - python] 24313번: 알고리즘 수업 - 점근적표기 1 (0) | 2023.07.14 |
---|---|
[백준 - python] 24262~7번: 알고리즘 수업 - 알고리즘의 수행 시간 1~6 (0) | 2023.05.27 |
[programmers - python] Lv.1: 삼총사 (0) | 2023.01.21 |
[programmers - python] Lv.1: 과일 장수 (0) | 2023.01.20 |
[programmers - python] Lv.1: 푸드 파이트 대회 (0) | 2023.01.18 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 25501
- programmer
- 25192
- 13241
- 13909
- 17103
- 5597
- Python
- MySQL
- SQL
- Programmers
- 26069
- til
- 항해+
- 코육대
- 2738
- Wil
- 24313
- 2903
- 2587
- 항해 플러스
- 20920
- 1269
- 24723
- 벡준
- 백준
- 24060
- 10807
- 4134
- 2053
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함