Node.js) 백준 24955번: 숫자 이어 붙이기
https://www.acmicpc.net/problem/24955// https://www.acmicpc.net/problem/24955class Node { constructor(item) { this.item = item; this.next = null; }}class Queue { constructor() { this.head = null; this.tail = null; this.length = 0; } push(item) { const node = new Node(item); if (this.head == null) { this.head = node; } else { this.tail.next = node; } this.tail = node; this.length +..
자료구조 알고리즘/백준
2024. 7. 10. 12:52
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- MySQL
- create db
- 로드나인
- 면접비
- MOD
- 그래프
- 은둔청년체험
- node.js
- 최소공통조상
- BFS
- 개발자면접
- 롱베케이션
- 투포인터
- create databases;
- 다이나믹프로그래밍
- 투포인터 연습
- 동적프로그래밍
- DB 생성
- 다이나밍프로그래밍
- 면접질문
- 서버점검
- 서버개발
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함