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 |
Tags
- @Profile
- 리소스 서버
- 브루트포스
- AuthenticationPrincipal
- @ConfigurationProperties
- EnableAutoConfiguration
- 정적 리소스
- Application Argument
- 스프링 부트
- 다익스트라
- OAuth2
- JsonSerializer
- cors
- HttpMessageConverters
- 백트래킹
- Application Event
- WebApplication Type
- application.properties
- 외부설정
- Application Runner
- Spring Security
- 스프링부트
- JPA
- 리소스핸들러
- 백준
- rest api
- webjar
- 백기선
- 알고리즘
- HATEOAS
Archives
- Today
- Total
목록백트래킹 (1)
아카이브
[백준]1987.알파벳
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.HashSet; import java.util.Set; import java.util.StringTokenizer; public class Main { static int[] dx = {-1, 1, 0, 0}; static int[] dy = {0, 0, -1, 1}; static int R, C; static char[][] map; static int max = Integer.MIN_VALUE; public static void main(String[] args) throws IOException { Buf..
자료구조&알고리즘
2020. 9. 14. 23:29