from itertools import combinations
l , c = map(int, input().split())
letters = sorted(input().split())
words = combinations(letters, l)
for word in words:
cnt = 0
for i in word:
if i in "aeiou":
cnt += 1
if cnt >= 1 and l - cnt >= 2:
print("".join(word))
'프로그래밍 언어 > Python' 카테고리의 다른 글
[Python] Tuple (튜플) 사용 방법 (0) | 2023.12.20 |
---|---|
[Python] Tuple (튜플)과 List(리스트)의 공통점/차이점 (0) | 2023.12.20 |
[Python] 데이터 여러개 입력 받기 (Input) (0) | 2023.12.13 |
[Python] 입력값 받기 / input() 함수 (0) | 2023.12.13 |
[Python] 기본 자료형 1(숫자형, 문자열, bool형, None) (0) | 2023.09.23 |