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
- spring cloud
- 프로래머스
- JPA
- Spring Boot
- Spring
- java
- MSA
- 백준 16236
- 백준 16719
- 백준 16235
- springboot
- 백준 19238
- 웹어플리케이션 서버
- with recursive
- spring oauth
- Coroutine
- sql 기술면접
- re.split
- 백준 파이썬
- 프로그래머스
- Kotlin
- 백준
- java 기술면접
- JVM
- 백준 17626
- MySQL
- 백준 15685
- 파이썬
- spring security
- 백준 17779
Archives
- Today
- Total
목록프로그래머스 보석 쇼핑 (1)
시작이 반
[프로그래머스] 보석 쇼핑(python 파이썬)
programmers.co.kr/learn/courses/30/lessons/67258 코딩테스트 연습 - 보석 쇼핑 ["DIA", "RUBY", "RUBY", "DIA", "DIA", "EMERALD", "SAPPHIRE", "DIA"] [3, 7] programmers.co.kr 모든 보석을 포함하는 최소 구간을 구하는 문제이다. 우선 모든 구간이기 때문에 안될걸 알지만 생각나는 방법이 없어서 nC2를 이용하여 모든 구간을 구하여 풀었다. gems 배열의 크기는 1 이상 100,000 이하이다 100000C2를 하면 50억(?)정도 나온다... 조합으로 푼 코드 import math min_result = list() min_range = math.inf def solution(gems): gems_..
알고리즘/Programmers
2021. 4. 29. 23:42