Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래머스 파이썬
- Kaggle
- 백준
- 파이썬
- github
- AI 경진대회
- Docker
- SW Expert Academy
- 금융문자분석경진대회
- 프로그래머스
- Git
- PYTHON
- 더현대서울 맛집
- 코로나19
- leetcode
- dacon
- ChatGPT
- programmers
- 편스토랑
- 우분투
- 캐치카페
- Baekjoon
- 맥북
- Real or Not? NLP with Disaster Tweets
- gs25
- 편스토랑 우승상품
- hackerrank
- 데이콘
- 자연어처리
- ubuntu
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 숫자 짝궁 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 숫자 짝궁 입니다.
👨🏻💻 코드 ( Solution )
from collections import Counter
def solution(X, Y):
answer = '-1'
list_X, list_Y = list(X), list(Y)
set_X, set_Y = set(list_X), set(list_Y)
cnt_X, cnt_Y = Counter(list_X), Counter(list_Y)
intersection = set_X & set_Y
if intersection:
answer = ''
sorted_number = sorted(intersection, reverse=True)
for num in sorted_number:
answer += num * min(cnt_X[num], cnt_Y[num])
if sum(list(map(int, list(answer)))) == 0:
answer = "0"
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 25858번 : Divide the Cash (Python) (0) | 2022.10.28 |
---|---|
[BaekJoon] 6810번 : ISBN (Python) (0) | 2022.10.27 |
[Programmers] 가장 큰 수 찾기 (Python) (0) | 2022.10.25 |
[Programmers] 콜라 문제 (Python) (0) | 2022.10.24 |
[BaekJoon] 23348번 : 스트릿 코딩 파이터 (Python) (0) | 2022.10.23 |
Comments