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