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
- Thymeleaf
- 자바 ORM 표준 JPA 프로그래밍
- msa
- 모던 자바스크립트 Deep Dive
- java
- auto-offset-reset
- 자바
- 스프링 시큐리티
- spring security
- 출처 모던 자바스크립트 Deep Dive
- 관계형 데이터베이스
- JPA
- Kafka
- 중복되지 않는 값 만들기
- 유효성검사
- UUID
- 자바스크립트
- ORM
- 공백검사
- springboot
- 게시판 작성자를 아이디로
Archives
- Today
- Total
목록2026/01/15 (1)
인지용
[백준] 1935 후위 표기식2 [python, 실버3, 스택]
https://www.acmicpc.net/problem/1935 import sysimport operatordef input(): return sys.stdin.readline().strip()n = int(input())text = list(input())stack = []nums = []ops = { '+': operator.add, '-': operator.sub, '*': operator.mul, '/': operator.truediv}for i in range(n): nums.append(int(input()))for i in text: if i.isalpha(): index = ord(i) - ord('A') stack.appe..
알고리즘
2026. 1. 15. 10:57
