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
- pintos
- 사이드프로젝트
- userprog
- CSS
- 오블완
- 4기
- 큐
- 코드트리
- HTML
- 크래프톤정글
- 자바스크립트
- 소켓
- 백준
- Vue.js
- JavaScript
- 스택
- 나만무
- 핀토스
- 모션비트
- corou
- TiL
- Flutter
- 리액트
- Java
- 티스토리챌린지
- 시스템콜
- 자바
- defee
- 알고리즘
- 크래프톤 정글
Archives
- Today
- Total
목록별 찍기13 (1)
미새문지
크래프톤 정글 week07, day59 - 잔디심기, alarm-simultaneous 구현
오늘의 잔디심기 백준 2523 자바스크립트 브론즈3 별 찍기 13 const fs = require("fs"); const filePath = process.platform === "linux" ? "/dev/stdin" : "./input.txt"; let input = fs.readFileSync(filePath).toString().split("\n"); const n = Number(input[0]); const star = '*'; for (let i = 1; i 0; i--) { let result = ''; for (let j = 0; j < i; j++) { result += star; } console.log(result); } 오늘도 열심히 pintOS 죽쑤느라 간단한 문제로 잔디 심기..
크래프톤 정글/TIL
2024. 3. 7. 01:25