[프로그래머스] 크레인 인형뽑기 (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.
[프로그래머스] K번째 수 (python)
문제 링크 (Level 1) https://programmers.co.kr/learn/courses/30/lessons/42748 코딩테스트 연습 - K번째수 [1, 5, 2, 6, 3, 7, 4] [[2, 5, 3], [4, 4, 1], [1, 7, 3]] [5, 6, 3] programmers.co.kr 나의 코드 (python) def solution(array, commands): answer = [] for arr in commands: step = array[arr[0]-1:arr[1]] step.sort() answer.append(step[arr[2] - 1]) return answer 이 문제는 배열을 슬라이싱 할 때 범위를 잘 확인해야 합니다.
2021. 7. 15.