일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- itertools
- 11054
- lcm
- 괄호
- 나머지
- expo
- 코테
- permutation
- 1260
- LCS
- 안드로이드
- 최소공배수
- 홈화면
- 앱
- Android
- 9095
- 뒤로가기
- Python
- Combination
- 매일11시
- 코틀린
- 11057
- Kotlin
- 파이썬
- 1182
- 11053
- 백준
- 순열
- 11기
- 6603
- Today
- Total
목록itertools (2)
황소개발자
입력이 들어오는 방식은 두가지 1. 문자열 import itertools a = '1234' print(list(map(''.join, itertools.permutations(a)))) ['1234', '1243', '1324', '1342', '1423', '1432', '2134', '2143', '2314', '2341', '2413', '2431', '3124', '3142', '3214', '3241', '3412', '3421', '4123', '4132', '4213', '4231', '4312', '4321'] 2. 숫자 배열 (문자 배열은 그냥 map(str, a) 없이 해주면 됨) import itertools a = [1, 2, 3, 4] print(list(itertools.per..
역시 갓파이썬이죠 파이썬엔 itertools 란 모듈이 있습니다. 모르시는분 이제 알고 가세요. 화끈합니다. import itertools import sys def sol(): while True: s = sys.stdin.readline() if s.strip() == "0": return lst = list(map(int, s.split())) lst = lst[1:] lst = list(map(str, lst)) combi = list(map(' '.join, list(itertools.combinations(lst, 6)))) for numbers in combi: print(numbers) print() sol() 우선 윗 코드는 정답코드입니다. 그리고 permutations, combinat..