[프로그래머스] 키패드 누르기 (python)
문제 링크 (Level 1) https://programmers.co.kr/learn/courses/30/lessons/67256 코딩테스트 연습 - 키패드 누르기 [1, 3, 4, 5, 8, 2, 1, 4, 5, 9, 5] "right" "LRLLLRLLRRL" [7, 0, 8, 2, 8, 3, 1, 5, 7, 6, 2] "left" "LRLLRRLLLRR" [1, 2, 3, 4, 5, 6, 7, 8, 9, 0] "right" "LLRLLRLLRL" programmers.co.kr 나의 코드 (python) def solution(numbers, hand): answer = '' # 다이얼 배열 left = [1,4,7] right = [3,6,9] mid = [2,5,8,0] # a는 '*' 위치상 ..
2021. 7. 26.
[프로그래머스] 크레인 인형뽑기 (python)
문제 링크 (Level 1) https://programmers.co.kr/learn/courses/30/lessons/64061 코딩테스트 연습 - 크레인 인형뽑기 게임 [[0,0,0,0,0],[0,0,1,0,3],[0,2,5,0,1],[4,2,4,4,2],[3,5,1,3,1]] [1,5,3,5,1,2,1,4] 4 programmers.co.kr 나의 코드 (python) def solution(board, moves): answer = 0 # 뽑은 인형을 담을 배열 result = [] for i in moves: for j in range(len(board)): if board[j][i-1] != 0: result.append(board[j][i-1]) board[j][i-1] = 0 break #..
2021. 7. 16.