[프로그래머스] [카카오 인턴] 키패드 누르기
코딩테스트 2022. 8. 20. 14:42

// https://school.programmers.co.kr/learn/courses/30/lessons/67256 function solution(numbers, hand) { let answer = ''; let rightHandPosition = '#'; let leftHandPosition = '*'; for(let i = 0; i < numbers.length; i++) { const checkHandle = checkPosition(numbers[i]) if(checkHandle){ // 키패드 위치가 왼쪽,오른쪽이면 answer += checkHandle // 정답 스트링에 추가 // 마지막 위치 변수에 저장 if(checkHandle === 'L'){ leftHandPosition = ..