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
- 코딩
- 파이썬
- 데이터베이스
- jdbc
- 모바일
- 세션
- 크롤링
- 프로그래머스
- 개발
- Python
- 이진 변환 반복하기
- 입출력
- javascript
- 파일 저장
- 함수형 인터페이스
- 메모장
- 자바
- java
- MySQL
- js
- jsp
- 셀레니움
- android
- Programmers
- 유튜브
- 프로그래밍
- n^2 배열 자르기
- 개발자
- 형태소 분석기
- 자바스크립트
Archives
- Today
- Total
목록카카오 인턴 (1)
개인용 복습공간
프로그래머스 - 키패드 누르기
*과 #을 숫자값으로 두고 누르기 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.ce..
programmers
2023. 10. 12. 17:05