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
- 백준
- JVM
- 백준 16235
- spring cloud
- java 기술면접
- with recursive
- 백준 15685
- MSA
- 백준 17626
- 백준 16719
- 웹어플리케이션 서버
- 백준 17779
- 파이썬
- spring security
- 백준 파이썬
- Spring
- MySQL
- springboot
- re.split
- Spring Boot
- JPA
- sql 기술면접
- spring oauth
- 백준 16236
- java
- Kotlin
- 프로래머스
- Coroutine
- 프로그래머스
- 백준 19238
Archives
- Today
- Total
목록백준 1780 (1)
시작이 반

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