일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #영어
- findContours
- opencv SURF
- object detection
- convexhull
- word embedding
- Convolution Neural Network
- keras
- 영어명언
- 딥러닝
- text2img
- c언어
- #Android
- #일상영어
- #프로젝트
- tensorflow update
- #실생활 영어
- 이미지 생성
- 영어
- #opencv
- #English
- python __init__
- python 알고리즘
- TensorFlow
- tokenizing
- #실생활영어
- python list
- 완전탐색
- #1일1영어
- #영어 명언
Archives
- Today
- Total
목록부분 문자열 (1)
When will you grow up?
Longest Palindromic Substring [leet code 5]
https://leetcode.com/problems/longest-palindromic-substring/ 팰린드롬 부분 문자열 문제다. Palindromic 팰린드롬이 뭔지 알아보자.Wiki 를 살펴보니 회문(回文) 또는 팰린드롬(palindrome)은 거꾸로 읽어도 제대로 읽는 것과 같은 문장이나 낱말, 숫자, 문자열(sequence of characters) 등이다. 보통 낱말 사이에 있는 띄어쓰기나 문장 부호는 무시한다라고 나와있다. 그럼 이제 문제를 살펴보자. Example 1:Input: s = "babad"Output: "bab"Explanation: "aba" is also a valid answer.Example 2:Input: s = "cbbd"Output: "bb" Constrain..
02. Study/Algorithm
2024. 8. 14. 00:04