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
- cos pro 1급
- 코드품앗이
- 파이썬
- Algorithm
- django
- issue
- Vue
- 안드로이드
- cos pro
- 분할정복
- Python
- 안드로이드스튜디오
- 개발
- cos
- DFS와BFS
- 알고리즘
- 백준
- 동적계획법
- vuejs
- 코테
- 동적계획법과최단거리역추적
- DFS
- 코딩테스트
- DART
- android
- BAEKJOON
- Flutter
- codingtest
- AndroidStudio
- C++
Archives
- Today
- Total
목록cos 팰린드롬 문제 (1)
Development Artist
[COS Pro 1급, Python] 3차 2번 : 팰린드롬 문제
문제 유형 빈칸 난이도 easy Note 1. 팰린드롬 수 : 앞뒤를 뒤집어도 똑같은 문자열 2. start_idx를 정하는 2중 for문 로직 기억. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean # 3차 2번 def func_a(arr, s): return s in arr def func_b(s): length = len(s) for i in range(length // 2): if s[i] != s[length - i - 1]: return False return True def func_c(palindromes, k): palindromes = sorted(palindromes) if len(palindromes) < k: ret..
Algorithm/COS
2022. 2. 25. 12:07