반응형
SMALL
기본 코드 없이 시작....
itertools 모듈에 product 기능을 이용해서
문제를 해결
# Enter your code here. Read input from STDIN. Print output to STDOUT
from itertools import product
a=list(map(int,input().split()))
b=list(map(int,input().split()))
print(*product(a, b))
반응형
LIST
'IT & 영상관련 > 파이썬python' 카테고리의 다른 글
HackerRank] .combinations() 조합 (저장용) (2) | 2020.08.06 |
---|---|
HackerRank] .permutations() 순열 (저장용) (0) | 2020.08.05 |
HackerRank] Capitalize (첫글자 대문자) (저장용) (0) | 2020.08.03 |
python]hackerRank] Alphabet Rangoli (다시보기) (저장용) (0) | 2020.08.02 |
python]hackerRank] String Formatting 진수변환, 간격(저장용) (0) | 2020.08.01 |