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
- git flow finish
- CSS
- git
- 책으론 원리만
- 바닐라JS
- 힘들었던 한주
- fetch pull 차이
- git flow start
- Mac
- 다시 홧팅
- Main
- 차이점
- javascript30
- HTML
- AJAX
- 실무는 공식문서로
- js
- api 라우트
- 클라이언트 컴포넌트
- 서버 컴포넌트
- Next.js
- axios
- 백준
- JavaScript
- jQuery
- TS
- 개발일지
- 끝까지 잘 마무리하기
- freecodecamp
- 공부할 거 넘많다~
Archives
- Today
- Total
목록split().join() (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