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 |
Tags
- spring security
- MySQL
- Spring
- 백준 16235
- sql 기술면접
- 프로래머스
- 백준 17779
- Kotlin
- 백준
- 백준 파이썬
- spring cloud
- 백준 17626
- 백준 19238
- JVM
- java 기술면접
- with recursive
- 웹어플리케이션 서버
- 파이썬
- 백준 15685
- springboot
- 백준 16719
- 백준 16236
- re.split
- JPA
- java
- 프로그래머스
- Coroutine
- Spring Boot
- spring oauth
- MSA
Archives
- Today
- Total
시작이 반
[프로그래머스] 메뉴 리뉴얼(python 파이썬) 본문
SMALL
programmers.co.kr/learn/courses/30/lessons/72411
조합, 사전 관련 문제이다.
course 수에 따른 조합을 구하여 사전에 넣는다.
from itertools import combinations
def solution(orders, course):
answer = []
for cour in course:
menus = dict()
temps = list()
for order in orders:
temps.extend(list(combinations(sorted(order), cour)))
for temp in temps:
key = ''.join(temp)
if key in menus:
menus[key] += 1
else:
menus[key] = 1
for menu in menus:
if max(menus.values()) > 1:
if menus[menu] == max(menus.values()):
answer.append(menu)
answer.sort()
return answer
solution(["XYZ", "XWY", "WXA"], [2, 3, 4])
LIST
'알고리즘 > Programmers' 카테고리의 다른 글
[프로그래머스] 키패드 누르기(python 파이썬) (0) | 2021.04.29 |
---|---|
[프로그래머스] 순위 검색(python 파이썬) (2) | 2021.03.19 |
[프로그래머스] 신규 아이디 추천(python 파이썬) (0) | 2021.03.18 |
[프로그래머스] 등굣길(python 파이썬) (0) | 2021.03.12 |
[프로그래머스] N으로 표현(python 파이썬) (0) | 2021.03.11 |