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
- @Profile
- @ConfigurationProperties
- Application Argument
- Spring Security
- Application Runner
- 알고리즘
- 정적 리소스
- 리소스핸들러
- webjar
- 백준
- HttpMessageConverters
- WebApplication Type
- 리소스 서버
- 스프링부트
- 브루트포스
- rest api
- 외부설정
- 다익스트라
- HATEOAS
- 백기선
- cors
- OAuth2
- Application Event
- JPA
- JsonSerializer
- application.properties
- AuthenticationPrincipal
- 백트래킹
- 스프링 부트
- EnableAutoConfiguration
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