본문 바로가기

분류 전체보기94

프로메테우스 설정 에러 Get "http://localhost:8080/actuator/prometheus": dial tcp 127.0.0.1:8080: connect: connection refused 이슈: Get "http://localhost:8080/actuator/prometheus": dial tcp 127.0.0.1:8080: connect: connection refused원인: 로컬 컴퓨터에서 docker로 올렸기 때문에 프로메테우스가 올라간 서버의 127.0.0.1 이 내 로컬 컴퓨터가 아니어서 난 이슈.해결: 다음과 같이 프로메테우스 설정 파일을 수정한다scrape_configs: - job_name: 'service' metrics_path: '/actuator/prometheus' scrape_interval: 10s static_configs: - targets: ['host.docker.internal:8080']   https://stackover.. 2024. 6. 29.
프로그래머스 합승 택시 요금 파이썬 1. 문제 https://programmers.co.kr/learn/courses/30/lessons/72413 코딩테스트 연습 - 합승 택시 요금 6 4 6 2 [[4, 1, 10], [3, 5, 24], [5, 6, 2], [3, 1, 41], [5, 1, 24], [4, 6, 50], [2, 4, 66], [2, 3, 22], [1, 6, 25]] 82 7 3 4 1 [[5, 7, 9], [4, 6, 4], [3, 6, 1], [3, 2, 3], [2, 1, 6]] 14 6 4 5 6 [[2,6,6], [6,3,7], [4,6,7], [6,5,11], [2,5,12], [5,3,20], [2,4 programmers.co.kr 2. 풀이 다익스트라 3. 구현 import math import hea.. 2021. 8. 14.
프로그래머스 순위검색 파이썬 1. 문제 https://programmers.co.kr/learn/courses/30/lessons/72412 2021. 8. 14.
python: @lru_cache(None) 데코레이터 재귀함수 위에 @lru_cache(None) 데코레이터를 사용하면 함수가 반환하는 값을 메모이제이션(memoization)할 수 있다. class Solution: def minFlipsMonoIncr(self, s: str) -> int: s = [int(i) for i in s]+[1] @lru_cache(None) def dp(i, k): if i==-1: return 0 return min([dp(i-1, j)+int(k!=s[i]) for j in range(k+1)]) return dp(len(s)-1,1) 2021. 8. 11.
반응형