티스토리 뷰
반응형
문제: programmers.co.kr/learn/courses/30/lessons/72411
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import itertools
def solution(orders, course):
answer = []
for c in course:
dic={}
tmp=[]
Max=0
for ords in orders:
ords=list(ords)
ords.sort()
for val in itertools.combinations(ords,c):
dic[val]=dic.get(val,0)+1
Max=max(Max,dic[val])
for k,v in dic.items():
if v==Max and v!=1:
k=''.join(k)
tmp.append(k)
answer+=tmp
answer.sort()
return answer
|
cs |
1.itertools 중에서 combinations을 통하여 해당 알파벳으로 만들 수 있는 조합의 수를 만들고 나서 카운드를 한다.
2. value 중에서 최댓값이면서 1이 아닌 값들을 문자열로 변환한 다음에 리스트에 더한다.
3. 리스트를 정렬한다음에 반환하면 끝!!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import collections
import itertools
def solution2(orders, course):
result = []
for course_size in course:
order_combinations = []
for order in orders:
order_combinations += itertools.combinations(sorted(order), course_size)
most_ordered = collections.Counter(order_combinations).most_common()
result += [ k for k, v in most_ordered if v > 1 and v == most_ordered[0][1] ]
return [ ''.join(v) for v in sorted(result) ]
|
cs |
이 코드는 프로그래머스에서 최상단에 있는 코드이다.
내 코드와 차이점이 있다면 collections.Counter 유무라 할 수 있겠다.
collections.Counter는 각 단어의 갯수들을 카운팅하여 사전형식으로 변환해주는 도구인데, 여기에서 most_common()이란 매서드는 데이터의 개수가 많은 순으로 배열을 리턴하는 매서드이다.
반응형
'알고리즘 > 프로그래머스' 카테고리의 다른 글
2020 KAKAO BLIND RECRUITMENT괄호 변환 (0) | 2021.02.03 |
---|---|
2017카카오코드 예선 카카오프렌즈 컬러링북 파이썬 (0) | 2021.02.03 |
2020 KAKAO BLIND RECRUITMENT문자열 압축 (0) | 2021.01.30 |
2021 KAKAO BLIND RECRUITMENT순위 검색 (0) | 2021.01.28 |
실패율 (0) | 2021.01.27 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 자바
- setattr
- thread
- 2021 KAKAO BLIND RECRUITMENT
- docker-compose
- ubuntu
- 면접
- Spring
- 파이썬
- postgres
- 백준
- Collections
- Command Line
- Python
- env
- 프로그래머스
- Pattern
- BFS
- dockerignore
- docker
- Celery
- PostgreSQL
- DRF
- Linux
- Java
- headers
- 알고리즘
- 그래프
- django
- 카카오
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함