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