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
- 자바스크립트 스코프
- 구름톤 챌린지 회고
- 구름톤 챌린지
- 옵셔널체이닝
- 백준 2108 nodejs
- 리액트쿼리 suspense
- next13 emotion
- js 거리두기 확인하기
- js 스코프
- suspense react-query
- suspense 동작원리
- js
- suspense 병목현상
- 백준 1339번 nodejs
- 구름톤
- 프로그래머스 문자열 압축
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- emtion app router
- 카카오 코테
- 자바스크립트 문자열 압축
- 백준 1339번 js
- app router emotion
- 사용성 개선
- 백준 2108 자바스크립트
- 프로그래머스 거리두기 확인하기
- emotion RSC
- suspense 비동기
- js 문자열 압축
- 스코프
- 백준 1339번 자바스크립트
Archives
- Today
- Total
목록백준 2884번 nodejs (1)
Lennon FE
[백준 2884번] 알람 시계 - 자바스크립트(nodejs)
https://www.acmicpc.net/problem/2884 2884번: 알람 시계 상근이는 매일 아침 알람을 듣고 일어난다. 알람을 듣고 바로 일어나면 다행이겠지만, 항상 조금만 더 자려는 마음 때문에 매일 학교를 지각하고 있다. 상근이는 모든 방법을 동원해보았지만, www.acmicpc.net const fs = require('fs'); let [hour, minute] = fs.readFileSync('dev/stdin').toString().trim().split(' ').map(Number); let time = hour !== 0 ? hour * 60 + minute - 45 : 24 * 60 + minute - 45; let alarmHour = time >= 1440 ? 0 : Ma..
카테고리 없음
2022. 1. 25. 23:17