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
- java 기술면접
- 백준 17626
- 프로그래머스
- sql 기술면접
- 백준
- spring oauth
- with recursive
- MySQL
- re.split
- 프로래머스
- java
- Spring
- MSA
- 백준 16719
- 백준 19238
- 파이썬
- JVM
- spring cloud
- 백준 15685
- 백준 16236
- JPA
- 백준 16235
- Kotlin
- 웹어플리케이션 서버
- 백준 파이썬
- Spring Boot
- springboot
- spring security
- 백준 17779
- Coroutine
Archives
- Today
- Total
목록백준 4396 (1)
시작이 반
[백준] 4396번번 (python 파이썬)
구현문제이다. 열린 칸 주변에 지뢰가 몇개 있는지 확인(해당 위치에서 8방향) 하여 숫자를 출력한다. 만약 연린 칸에 지뢰가 있다면 모든 지뢰 또한 출력한다. 이중 반복문을 이용하여 구현하였다. dx, dy를 사용하여 좌표를 구하였음 n = int(input()) graph1 = list(input() for _ in range(n)) graph2 = list(input() for _ in range(n)) answer = [['.'] * n for _ in range(n)] dx = [-1, -1, -1, 0, 1, 1, 1, 0] dy = [-1, 0, 1, 1, 1, 0, -1, -1] def findBoom(): for i in range(n): for j in range(n): if graph1..
알고리즘/백준
2021. 3. 29. 18:58