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 |
Tags
- 4기
- HTML
- pintos
- CSS
- 큐
- 자바
- 스택
- 나만무
- corou
- 알고리즘
- Java
- 소켓
- 자바스크립트
- 사이드프로젝트
- 크래프톤 정글
- 핀토스
- 프로그래머스
- userprog
- 크래프톤정글
- defee
- 코드트리
- TiL
- JavaScript
- 시스템콜
- 정보처리기사
- 리액트
- 백준
- Flutter
- Vue.js
- 모션비트
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