728x90 반응형 분류 전체보기273 프로그래머스 - 외계어 사전 class Solution { public int solution(String[] spell, String[] dic) { int answer = 2; for(int i=0; i 2023. 3. 19. 프로그래머스 - 삼각형의 완성조건 (2) import java.util.*; class Solution { public int solution(int[] sides) { int answer = 0; int num = 0; Arrays.sort(sides); for(int i=1; i i){ if(sides[0] + i > sides[1]){ answer++; } } } return answer; } } 2023. 3. 19. 프로그래머스 - 문자열 계산하기 class Solution { public int solution(String my_string) { int answer = 0; String exp = my_string.replaceAll("- ", "+ -"); String[] ars = exp.split(" \\+ "); for(String a : ars){ answer += Integer.parseInt(a); } return answer; } } 2023. 3. 18. [Spring Boot] 인텔리제이에서 Spring Boot 자동 빌드 설정 1. build.gradle에서 'spring-boot-devtools'를 추가한다. dependencies { developmentOnly 'org.springframework.boot:spring-boot-devtools' // 추가하기 } 2. 메뉴 -> File -> Setting -> build, Execution, Deployment -> Compiler Build project automatically를 체크한다. 3. 메뉴 -> File -> Settings -> Advanced Settings Allow auto-make to start even if ~~ 를 체크한다. 이렇게 3가지를 수행하니 자동 빌드가 활성화가 되었다! 2023. 3. 18. 이전 1 ··· 26 27 28 29 30 31 32 ··· 69 다음 728x90 반응형