일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 딥러닝
- tensorflow update
- #Android
- 완전탐색
- tokenizing
- text2img
- keras
- #프로젝트
- #영어
- findContours
- #English
- #opencv
- 영어
- #실생활영어
- object detection
- 이미지 생성
- python list
- TensorFlow
- #실생활 영어
- python __init__
- #일상영어
- #영어 명언
- python 알고리즘
- Convolution Neural Network
- word embedding
- convexhull
- c언어
- 영어명언
- #1일1영어
- opencv SURF
Archives
- Today
- Total
목록leetcode 819 (1)
When will you grow up?
Most Common Word [leetcode 819]
https://leetcode.com/problems/most-common-word/description/ 가장 흔한 단어 1. 처음 풀이법- 소문자 변경- 구두점 제거 및 단어 분리- 단어 빈도수 계산- 가장 빈번한 단어 찾기 순서로 간단하게 해결하였다. 처음 풀이한 코드는 다음과 같다.from typing import Listclass Solution: def mostCommonWord(self, paragraph: str, banned: List[str]) -> str: # 소문자로 변환 paragraph = paragraph.lower() # 구두점 제거 및 단어 분리 words = [] current_word = ..
02. Study/Algorithm
2024. 8. 11. 23:22