전체 글154 mac intellij 핫리로드(재실행하지 않아도 반영) mac intellij로 tomcat 이용 개발생산성 향상 시키기. 재실행을 하지 않아도 코드가 웹브라우저에 반영되려면 어떻게 해야할까. InteliJ IDEA -> Preferences 1. Preference -> Advanced settings -> Allow auto-make to start even if developed ... 체크 2. Preference -> Build, Execution, Deployments -> Compiler에서 Build project automatically 체크 3. context.xml 파일 내용 변경 apachet-tomcat-10.0.22 -> conf -> context.xml WEB-INF/web.xml WEB-INF/tomcat-web.xml ${ca.. 2022. 7. 22. 백준 17626. Four Squares (Java) DP문제이다. 차근차근 개수를 구해본다. dp[1] = 1^2 = 1 dp[2] = 1^2 + 1^2 = 2 dp[3] = 1^2 + 1^2 + 1^2 = 3 dp[4] = 2^2 = 1 dp[5] = 2^2 + 1^2 = 2 dp[6] = 2^2 + 1^2 + 1^2 = 3 dp[7] = 2^2 + 1^2 + 1^2 + 1^2 = 4 dp[8] = 2^2 + 2^2 = 2 d[9] = 3^2 = 1 제곱값부터 값이 크게 변하는 특징이 있다. 너무 어렵다. 참고자료를 참고하자. 참고자료: https://loosie.tistory.com/229 2022. 6. 23. 이전 1 ··· 17 18 19 20 다음