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 |
Tags
- Mac
- git flow finish
- 백준
- 차이점
- JavaScript
- 힘들었던 한주
- TS
- 끝까지 잘 마무리하기
- AJAX
- jQuery
- 실무는 공식문서로
- 클라이언트 컴포넌트
- 책으론 원리만
- fetch pull 차이
- 공부할 거 넘많다~
- 다시 홧팅
- Main
- 서버 컴포넌트
- 바닐라JS
- axios
- javascript30
- CSS
- js
- 개발일지
- git
- freecodecamp
- Next.js
- api 라우트
- HTML
- git flow start
Archives
- Today
- Total
목록replaceAll() (1)
다다의 개발일지 6v6
문제의 코드 (1차)const fs = require("fs");const word = fs.readFileSync(0, "utf-8").toString().trim();const alpha = [];for (const char of word) { if (alpha.length === 0) { alpha.push(char); } else { if ( char === "=" && // "c=", "dz=", "s=", "z="을 하나의 문자로 취급 (alpha.at(-1) === "c" || alpha.at(-1) === "dz" || alpha.at(-1) === "s" || alpha.at(-1) === "z") ) { ..
Frontend/코딩테스트 (JS)
2025. 1. 23. 14:29