본문 바로가기

with my rubber duck79

[프로그래머스] 숫자 문자열과 영단어 풀어보기 class Solution { public int solution(String s) { String[] word = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}; for (int i = 0; i < 10; i++) { s = s.replace(word[i], String.valueOf(i)); } return Integer.parseInt(s); } } 그래 나 혼자푼거 아니다 근데 이렇게 간단한거였다니 2022. 7. 11.
DefaultHandlerExceptionResolver HttpMessageConverter WARN 5940 --- [nio-8081-exec-7] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Cannot deserialize value of type `java.lang.Integer` from String "qqq": not a valid Integer value; nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type `java.lang.Integ.. 2022. 7. 10.
[프로그래머스] 없는숫자 더하기 class Solution { public int solution(int[] numbers) { int answer = 0; int cnt=0; for(int i=0;i 2022. 7. 6.
heroku application error app crash cmd에 heroku logs --tail --app [앱이름] ex)heroku logs --tail --app test-app 이렇게 하면 로그를 볼 수 있는데 ..봐도 뭔소린지 검색해봐도 딱히 뭐가 문젠지 모르겠고 port 문젠가 싶어서 port 번호 지정도 해봤는데 안된다. 그냥 spring boot로 실행하면 잘만된다. 그래도 잘 실행돼도 어떤 에러가 있을 수 있으니 확인해봤는데 404 에러가 뜬 게 있었다 혹시 이게 문젠가 싶어서 이 에러를 해결하고 다시 커밋푸시를 해봤다. 근데도 안됨. cmd에 뜨고 있는 에러도 그대로^^ 혹시 뭔가 있지 않을까 그냥 로그 자체를 첫 줄부터 차례차례 보던 중... 뭔가 중요해 보이는 단서 발견 jarfile에 접근할 수 없다는데.. 뭐지? 엄청난 걸 발견 그.. 2022. 7. 4.
Heroku Task :compileJava FAILED ERROR: Failed to run Gradle! ^^! https://devcenter.heroku.com/changelog-items/1489 Java 11 now available | Heroku Dev Center Java 11 now available Change effective on 25 September 2018 Heroku’s support for Java, Scala, Clojure, and Gradle now includes support for OpenJDK version 11. To use this version of the JDK, create a system.properties file in your application with the fo devcenter.heroku.com heroku는 8버전 기준이라 java에서 따로.. 2022. 7. 3.
[프로그래머스] 최솟값 만들기 풀어보기 (처음으로 2단계) import java.util.Arrays; import java.util.Collections; class Solution { public int solution(int []A, int []B) { Integer[] bToInteger = Arrays.stream(B).boxed().toArray(Integer[]::new); Arrays.sort(A); Arrays.sort(bToInteger, Collections.reverseOrder()); int answer = 0; for(int i=0;i 2022. 6. 24.
728x90