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
- 스코프
- 백준 1339번 자바스크립트
- js 문자열 압축
- 구름톤 챌린지
- 리액트쿼리 suspense
- suspense 비동기
- 백준 1339번 js
- js 거리두기 확인하기
- 자바스크립트 스코프
- 옵셔널체이닝
- suspense 병목현상
- 사용성 개선
- 프로그래머스 문자열 압축
- js 스코프
- 구름톤
- 프로그래머스 거리두기 확인하기
- suspense 동작원리
- 카카오 코테
- emotion RSC
- 백준 1339번 nodejs
- 백준 2108 자바스크립트
- 자바스크립트 문자열 압축
- emtion app router
- next13 emotion
- 백준 2108 nodejs
- js
- 구름톤 챌린지 회고
- suspense react-query
- app router emotion
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
Archives
- Today
- Total
목록프로그래머스 신규 아이디 추천 (1)
Lennon FE
[프로그래머스] 신규 아이디 추천 (js)
https://programmers.co.kr/learn/courses/30/lessons/72410?language=javascript 코딩테스트 연습 - 신규 아이디 추천 카카오에 입사한 신입 개발자 네오는 "카카오계정개발팀"에 배치되어, 카카오 서비스에 가입하는 유저들의 아이디를 생성하는 업무를 담당하게 되었습니다. "네오"에게 주어진 첫 업무는 새로 programmers.co.kr function solution(new_id) { let answer = new_id.toLowerCase(); answer = answer.replace(/[^\w-._]+/gi,'') .replace(/\.\.+/g,'.') .replace(/\.$/g,'') .replace(/^\./g,''); if(answer[..
🔥 Algorithm/Programmers
2021. 11. 5. 16:04