Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 개발
- Vue
- vuejs
- 동적계획법
- 안드로이드
- codingtest
- 분할정복
- Algorithm
- 백준
- 동적계획법과최단거리역추적
- 파이썬
- Flutter
- android
- django
- 안드로이드스튜디오
- DART
- C++
- 코딩테스트
- cos
- 알고리즘
- cos pro
- DFS
- BAEKJOON
- issue
- 코드품앗이
- AndroidStudio
- DFS와BFS
- Python
- 코테
- cos pro 1급
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 4차 1번 : 사전에서 단어찾기 본문
728x90
반응형
문제 유형
한줄 수정
난이도
normal
Note
1. recursive 함수, create_words 로직 암기.
Code
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
# 4차 1번
words = []
def create_words(lev, s):
global words
VOWELS = ['A', 'E', 'I', 'O', 'U']
words.append(s)
for i in range(0, 5):
if lev < 5:
create_words(lev+1, s + VOWELS[i])
def solution(word):
global words
words = []
answer = 0
create_words(0, '')
for idx, i in enumerate(words):
if word == i:
answer = idx
break
return answer
word1 = "AAAAE"
ret1 = solution(word1)
print("solution 함수의 반환 값은", ret1, "입니다.")
word2 = "AAAE"
ret2 = solution(word2)
print("solution 함수의 반환 값은", ret2, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 4차 3번 : 스키장 최소 비용 구하기 (0) | 2022.02.25 |
---|---|
[COS Pro 1급, Python] 4차 2번 : 문자열 압축 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 10번 : 밥먹고 머리자르고 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 9번 : 팝업 스토어를 열 최적의 날짜 (0) | 2022.02.25 |
[COS Pro 1급, Python] 3차 8번 : 선풍기를 몇대 사야 하나요 (0) | 2022.02.25 |
Comments