일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- python
- 파이썬
- 4주 프로젝트
- 타입스크립트 올인원
- SQL 고득점 Kit
- 자바스크립트
- 토익
- 코어 자바스크립트
- 리덕스
- programmers
- 리트코드
- 타임어택
- LeetCode
- Async
- 코드스테이츠
- til
- 알고리즘
- 2주 프로젝트
- 손에 익히며 배우는 네트워크 첫걸음
- javascript
- 정재남
- 회고
- 백준
- 타입스크립트
- codestates
- 리액트
- 렛츠기릿 자바스크립트
- 프로그래머스
- 제로초
- js
- Today
- Total
목록Problem Solving (205)
Jerry
function solution(num, total) { let start = 0; let test = new Array(num).fill(0).map((e, i) => i).reduce((a, c) => a + c, 0); while (test !== total) { if (test i + start).reduce((a, c) => a + c, 0); } return new Array(num).fill(0).map((e, i) => i + start); }
function solution(common) { let answer = 0; let len = common.length; let diff = common[1] - common[0]; let divide = common[1] / common[0]; if (common[1] - common[0] === common[2] - common[1]) { // 등차수열 return common[len - 1] + diff; } else { // 등비수열 // if (common[1] - common[0] !== common[2] - common[1]) { return common[len - 1] * divide; // return common[len - 1] * divide; } }
function solution(A, B) { let cnt = 0; if (A === B) return 0; let temp = A; for (let x = 0; x < A.length; x++) { if (temp === B) { cnt = x; break; } temp = temp[A.length - 1] + temp.slice(0, A.length - 1); } return !!cnt ? cnt : -1; }
function solution(chicken) { let coupon = chicken; let service = 0; while (coupon >= 10) { service += Math.floor(coupon / 10); coupon = Math.floor(coupon / 10) + coupon % 10; } return service; }
function solution(a, b) { let g = 1; for (let i = 1; i
function solution(lines) { var answer = 0; let lineMap = new Array(200); // 선분들이 놓일 공간 lineMap.fill(0); for (let i = 0; i 1) { answer += 1; } } return answer; }
function solution(babbling) { return babbling .map((_) => _.replace(/aya|ye|woo|ma/g, '')).filter((e) => e = !e).length; }
function solution(id_pw, db) { // db에서 아이디가 같은 원소만 남긴다 let findId = db.filter((e) => e[0] === id_pw[0]); // 이때, 비밀번호가 같은 원소인지 판단 let findPw = findId.filter((e) => e[1] === id_pw[1]); if (!!findPw.length) return 'login'; // 비밀번호가 같으면 login, 아니면 wrong pw else if (!!findId.length) return 'wrong pw'; // db에 아이디가 같은 원소가 없으면, fail return 'fail'; } // 다른 풀이 function solution(id_pw, db) { const [id, pw]..