반응형
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 |
31 |
Tags
- 소켓
- 프로그래머스 레벨 2
- 가천대
- 수학
- 타입 챌린지
- 자바스크립트
- TCP
- 알고리즘
- typescript
- ip
- HTTP
- 그래프
- dfs
- type challenge
- HTTP 완벽 가이드
- 프로그래머스
- 백준
- Algorithm
- 레벨 1
- 쉬운 문제
- Crawling
- dp
- 타입스크립트
- javascript
- Node.js
- Nestjs
- socket
- BFS
- 문자열
- 크롤링
Archives
- Today
- Total
목록2024/03/17 (1)
kakasoo
달과 일자로 이루어진 MMDD 타입
최초의 풀이와 오답 type Int = '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '0'; type February = '02' type MonthsHasDays30 = '04' | '06' | '09' | '11'; type MonthsHasDays31 = '01' | '03' | '05' | '07' | '08' | '10' | '12'; type Months = February | MonthsHasDays30 | MonthsHasDays31; type Days = Exclude type DaysByMonth = T extends February ? Exclude : T extends MonthsHasDays30 ? Exclude : Days ty..
프로그래밍/TypeScript
2024. 3. 17. 23:17