반응형
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 | 31 |
Tags
- 구현
- 백준 2309
- BFS
- boj 2309
- easy 딥러닝
- 기능개발
- til
- dfs
- 항해99
- 알고리즘
- Python
- 프로그래머스
- 큐
- 개발자취업
- BOJ
- 99항해
- 딥러닝
- 코딩테스트준비
- softeer
- 활성화 함수
- 백준
- 스택
- 코딩테스트 준비
- python 2309
- 파이썬
- 혁펜하임
- leetcode
- 99클럽
- 해시
- 개발자 취업
Archives
- Today
- Total
목록python 17609 (1)
동까의 코딩
99클럽 코테 스터디 TIL
https://www.acmicpc.net/problem/17609 from sys import stdininput = stdin.readlinenum = int(input())for _ in range(num): st = input().strip() front, back = 0, len(st) - 1 check = 0 for _ in range(len(st)): if front >= back: break if st[front] == st[back]: front += 1 back -= 1 continue if st[front] == st[back-1]: ..
문제 풀이/99클럽
2025. 2. 19. 20:37