Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 함수형 인터페이스
- n^2 배열 자르기
- 셀레니움
- 프로그래밍
- Programmers
- 유튜브
- 이진 변환 반복하기
- 파이썬
- MySQL
- 자바스크립트
- 코딩
- 개발자
- jsp
- android
- 프로그래머스
- js
- javascript
- 세션
- 형태소 분석기
- Python
- 파일 저장
- 개발
- 데이터베이스
- 입출력
- 크롤링
- jdbc
- java
- 메모장
- 자바
- 모바일
Archives
- Today
- Total
개인용 복습공간
프로그래머스 - 키패드 누르기 본문
*과 #을 숫자값으로 두고 누르기
function solution(numbers, hand) {
let lHand = '10' , rHand = '12';
return numbers.reduce((acc, el) => {
if(el == 0) {
el = 11;
};
const temp = el % 3;
if(temp == 0){
rHand = el;
acc += 'R';
}else if(temp == 1){
lHand = el;
acc += 'L';
}else{
const r_position = Math.abs(Math.ceil(el / 3) - Math.ceil(rHand / 3)) + (rHand % 3 == temp ? 0 : 1);
const l_position = Math.abs(Math.ceil(el / 3) - Math.ceil(lHand / 3)) + (lHand % 3 == temp ? 0 : 1);
if(r_position > l_position){
lHand = el;
acc += 'L';
}else if (r_position < l_position){
rHand = el;
acc += 'R';
}else if (r_position == l_position){
if(hand == 'right'){
rHand = el;
acc += 'R';
}else{
lHand = el;
acc += 'L';
}
}
}
return acc;
}, [])
}
'programmers' 카테고리의 다른 글
프로그래머스 - n^2 배열 자르기 (0) | 2023.10.25 |
---|---|
프로그래머스 - 크레인 인형뽑기 게임 (0) | 2023.10.25 |
프로그래머스 - 이진 변환 반복하기 (0) | 2023.10.12 |
프로그래머스 - H-Index (JavaScript, js) (0) | 2023.10.12 |
Comments