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
- 유효성검사
- Kafka
- 출처 모던 자바스크립트 Deep Dive
- springboot
- 자바스크립트
- auto-offset-reset
- spring security
- 공백검사
- 자바 ORM 표준 JPA 프로그래밍
- 자바
- JPA
- 관계형 데이터베이스
- UUID
- 게시판 작성자를 아이디로
- 중복되지 않는 값 만들기
- ORM
- 모던 자바스크립트 Deep Dive
- Thymeleaf
- msa
- java
- 스프링 시큐리티
Archives
- Today
- Total
목록2026/01/21 (1)
인지용
[백준] 27497 알파벳 블록 [python, 실버1, 스택]
https://www.acmicpc.net/problem/27497 import sysfrom collections import dequedef input(): return sys.stdin.readline().strip()n = int(input())dq = deque([])orders = []for i in range(n): arr = input().split() command = int(arr[0]) if command == 1: dq.append(arr[1]) orders.append(1) elif command == 2: dq.appendleft(arr[1]) orders.append(0) else: ..
알고리즘
2026. 1. 21. 14:49
