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