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 |
Tags
- github
- programmers
- Docker
- PYTHON
- hackerrank
- 금융문자분석경진대회
- Git
- 우분투
- 캐치카페
- 자연어처리
- 백준
- 프로그래머스
- Baekjoon
- 편스토랑 우승상품
- 코로나19
- SW Expert Academy
- AI 경진대회
- ubuntu
- Real or Not? NLP with Disaster Tweets
- 데이콘
- 파이썬
- 프로그래머스 파이썬
- Kaggle
- 더현대서울 맛집
- 맥북
- gs25
- dacon
- 편스토랑
- leetcode
- ChatGPT
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 6603번 : 로또 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 로또 입니다.
Solution
from itertools import combinations
def lotto(numbers):
numbers = numbers.split()
num, numbers = numbers[0], numbers[1:]
lotto_comb = list(combinations(numbers, 6))
lotto_comb = [" ".join(list(map(str, sorted(list(map(int, comb)))))) for comb in lotto_comb]
for comb in lotto_comb:
print(comb)
if __name__ == "__main__":
is_first = True
while True:
input_numbers = input()
if input_numbers == "0":
break
if not is_first:
print()
lotto(input_numbers)
is_first = False
Solution 풀이
조합을 생성해주는 itertools의 combinations와 리스트의 전체 데이터의 형식을 바꾸어주는 map을 활용하여
문제를 풀었습ㄴ디ㅏ.
먼저 입력 받은 숫자 목록을 split으로 나누어 줍니다.
7 1 2 3 4 5 6 7 -> [ '7', '1', '2', '3', '4', '5', '6', '7' ]
그러면 맨 앞의 숫자는 전체 숫자의 개수 뒤의 나머지 숫자는 내가 로또 조합에 사용할 숫자들 입니다.
이를 slicing 방법으로 나누었습니다.
num, numbers = numbers[0], numbers[1:]
# 이럴 경우 num = '7', numbers = [ '1', '2', '3', '4', '5', '6', '7' ]
그 다음 combinations를 활용하여 주어진 번호로 만들 수 있는 로또번호 조합을 만들어줍니다.
lotto_comb = list(combinations(numbers, 6))
이를 숫자의 크기를 기준으로 오름차순으로 정렬된 형태로 문자열을 만들어야하므로
각 조합의 데이터의 형식을 map을 활용하여 int 의 값을 가지는 리스트로 바꾸고 sorted로 오름차순 정렬한 뒤
문자열로 join 하기 위해서 map을 활용하여 다시 str로 형식을 바꾸고 join한 값들을 만들어줍니다.
lotto_comb = [" ".join(list(map(str, sorted(list(map(int, comb)))))) for comb in lotto_comb]
마지막으로 각 조합을 순서대로 출력해주면 끝! 입니다.
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 5598번 : 카이사르 암호 (Python) (0) | 2021.08.20 |
---|---|
[BaekJoon] 12813번 : 이진수 연산 (Python) (0) | 2021.08.19 |
[BaekJoon] 1371번 : 가장 많은 글자 (Python) (0) | 2021.08.17 |
[BaekJoon] 2439번 : 별 찍기 - 2 (Python) (0) | 2021.08.16 |
[BaekJoon] 15686번 : 치킨 배달 (Python) (0) | 2021.08.15 |
Comments