일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #실생활 영어
- 영어
- 딥러닝
- opencv SURF
- python list
- TensorFlow
- tokenizing
- #1일1영어
- python __init__
- #영어 명언
- #English
- tensorflow update
- python 알고리즘
- findContours
- convexhull
- text2img
- word embedding
- #영어
- #Android
- #일상영어
- 영어명언
- c언어
- #실생활영어
- object detection
- #opencv
- 이미지 생성
- keras
- 완전탐색
- #프로젝트
- Convolution Neural Network
Archives
- Today
- Total
목록longest palindrome substring (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