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
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- 프로그래머스 거리두기 확인하기
- 리액트쿼리 suspense
- suspense 동작원리
- js 문자열 압축
- suspense react-query
- app router emotion
- 백준 1339번 nodejs
- suspense 비동기
- 구름톤
- 옵셔널체이닝
- 자바스크립트 문자열 압축
- js
- next13 emotion
- 구름톤 챌린지
- emotion RSC
- 구름톤 챌린지 회고
- 백준 1339번 자바스크립트
- js 스코프
- 사용성 개선
- 백준 2108 nodejs
- emtion app router
- suspense 병목현상
- js 거리두기 확인하기
- 백준 2108 자바스크립트
- 백준 1339번 js
- 스코프
- 자바스크립트 스코프
- 카카오 코테
- 프로그래머스 문자열 압축
Archives
- Today
- Total
목록2941 자바스크립트 (1)
Lennon FE
[백준 2941] 크로아티아 알파벳 자바스크립트(nodejs)
https://www.acmicpc.net/problem/2941 2941번: 크로아티아 알파벳 예전에는 운영체제에서 크로아티아 알파벳을 입력할 수가 없었다. 따라서, 다음과 같이 크로아티아 알파벳을 변경해서 입력했다. 크로아티아 알파벳 변경 č c= ć c- dž dz= đ d- lj lj nj nj š s= ž z= www.acmicpc.net const fs = require('fs'); let input = fs.readFileSync('../input.txt').toString().trim(); input = input .replace(/dz=/gi, '.') .replace(/nj/gi, '.') .replace(/c=/gi, '.') .replace(/c-/gi, '.') .replace(/..
🔥 Algorithm/Baekjoon
2022. 1. 17. 04:18