반응형
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
- 딥러닝
- 99항해
- easy 딥러닝
- til
- BFS
- 개발자취업
- dfs
- 항해99
- 코딩테스트 준비
- 백준 2309
- 활성화 함수
- 알고리즘
- 프로그래머스
- python 2309
- 코딩테스트준비
- BOJ
- 백준
- 기능개발
- 큐
- 구현
- boj 2309
- 파이썬
- 해시
- leetcode
- Python
- softeer
- 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