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 |
Tags
- 백준 15685
- MSA
- Kotlin
- springboot
- MySQL
- 프로래머스
- Spring
- 백준 16236
- 웹어플리케이션 서버
- spring oauth
- re.split
- 파이썬
- JVM
- 백준 17779
- Coroutine
- 프로그래머스
- 백준 16719
- spring security
- sql 기술면접
- 백준
- java 기술면접
- spring cloud
- JPA
- with recursive
- java
- Spring Boot
- 백준 파이썬
- 백준 17626
- 백준 19238
- 백준 16235
Archives
- Today
- Total
목록백준 1780 (1)
시작이 반
[백준] 1780번 (python 파이썬)
NxN행렬을 검사한뒤 일괄된 숫자가 아니면 9등분 하는 문제이다. 9등분한 행렬을 각각 다시 재귀를 돌려서 검사한다. 백준 1021번 문제와 유사한 문제이다. tmdrl5779.tistory.com/100 [백준] 1021번 (python 파이썬) ex) 10 3 2 9 5 2 queue = 1 2 3 4 5 6 7 8 9 10 왼쪽으로 회전 1번 queue = 2 3 4 5 6 7 8 9 10 1 pop 9 queue = 3 4 5 6 7 8 9 10 1 오른쪽으로 회전 3번 queue = 9 10 1 3 4 5 6 7 8 pop 5 queue = 10 1 3 4 5.. tmdrl5779.tistory.com n = int(input()) graph = [list(map(int, input().spli..
알고리즘/백준
2021. 3. 8. 18:22