반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Algorithm
- type challenge
- 문자열
- 크롤링
- 소켓
- 알고리즘
- ip
- TCP
- 프로그래머스
- 자바스크립트
- Nestjs
- 쉬운 문제
- typescript
- Crawling
- 프로그래머스 레벨 2
- HTTP 완벽 가이드
- dfs
- HTTP
- 타입스크립트
- 수학
- javascript
- 레벨 1
- 그래프
- 백준
- dp
- BFS
- 가천대
- Node.js
- socket
- 타입 챌린지
Archives
- Today
- Total
목록date (1)
kakasoo

// 프로그래머스 level1 2016년 문제를 풀었습니다. function getDays(month) { switch (month) { case 1: case 3: case 5: case 7: case 8: case 10: case 12: return 31; case 2: return 29; default: return 30; } } function whatDay(answer) { if (answer === 0) return 'FRI'; if (answer === 1) return 'SAT'; if (answer === 2) return 'SUN'; if (answer === 3) return 'MON'; if (answer === 4) retu..
프로그래밍/알고리즘 풀이
2021. 6. 25. 17:05