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
- react
- 폰트적용하기
- click and drag
- utilty type
- vue.js
- 2022
- const 단언문
- returnType
- 티스토리꾸미기
- 타입좁히기
- 리액트
- 커스텀
- 타입스크립트
- 레이아웃쪼개기
- javascript
- 반복줄이기
- 개발콘텐츠
- NonNullable
- 제네릭
- 누구나 자료구조와 알고리즘
- React.js
- 성능최적화
- React Native
- JS console
- 공통컴포넌트
- typescript
- TSDoc
- CSS
- Chart.js
- reactjs
Archives
- Today
- Total
목록2024/11/25 (2)
몽땅뚝딱 개발자
[프로그래머스 | Javascript] Lv.1 기사단원의 무기
function solution(totalCount, limit, power) { let result = 0 for (let i = 1; i limit ? power : count) } return result}
Development/알고리즘
2024. 11. 25. 22:54
[프로그래머스 | Javascript] Lv.1 모의고사
// answer 1const 정답패턴 = { 1: [1, 2, 3, 4, 5], 2: [2, 1, 2, 3, 2, 4, 2, 5], 3: [3, 3, 1, 1, 2, 2, 4, 4, 5, 5],}function solution(answers) { const 학생별정답을찍는패턴 = {} const 학생별정답의수 = {} const 정답 = new Array(answers.length).fill().map((_, index) => answers[index % answers.length]) Object.values(정답패턴).forEach((array, index) => { 학생별정답을찍는패턴[index + 1] = new Array(answers.length).fill().map((_, ..
Development/알고리즘
2024. 11. 25. 22:53