반응형
Recent Posts
Notice
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준 카드1
- 스택
- softeer
- Python 20001
- til
- python 10989
- python 2309
- 코딩테스트 준비
- python 1259
- Python
- 큐
- leetcode 2405
- 구현
- 백준 막대기
- BOJ
- boj 2309
- python 14503
- 99항해
- 백준
- 파이썬
- 항해99
- leetcode
- 99클럽
- 일곱 난쟁이
- BFS
- python 10250
- 백준 팰린드롬수
- 백준 2309
- 개발자 취업
- 프로그래머스
Archives
- Today
- Total
목록모음의 개수 (1)
동까의 코딩
[Python] 백준 1264 : 모음의 개수
오늘은 기본 구현문제를 풀어보았습니다. while 반복문을 통해 계속해서 루프를 돌게 만들고, '#'이 입력으로 들어오면 반복문을 나가준다. 조건문을 통해 count를 추가해 주는 코드를 세워 주었다. while True: string_input = input() cnt = 0 if string_input == '#': break for st in string_input: if st == 'a' or st == 'A': cnt += 1 elif st == 'e'or st == 'E': cnt += 1 elif st == 'i' or st == 'I': cnt += 1 elif st == 'o' or st == 'O': cnt += 1 elif st == 'U' or st == 'u': cnt += 1 p..
문제 풀이/백준
2024. 3. 5. 14:01