일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Convolution Neural Network
- #실생활 영어
- #English
- python list
- opencv SURF
- word embedding
- #opencv
- #실생활영어
- tokenizing
- #1일1영어
- #영어 명언
- findContours
- 영어
- text2img
- 완전탐색
- object detection
- tensorflow update
- 영어명언
- 이미지 생성
- #일상영어
- convexhull
- #영어
- TensorFlow
- #Android
- keras
- #프로젝트
- python __init__
- 딥러닝
- python 알고리즘
- c언어
Archives
- Today
- Total
목록LeetCode Two Sum (1)
When will you grow up?
two-sum [leetcode 1]
https://leetcode.com/problems/two-sum 리트코드 첫번째 문제이다.첫번째 문제답게 난이도는 낮은편이고 그럼 문제를 살펴보도록 하자.Example 1:Input: nums = [2,7,11,15], target = 9Output: [0,1]Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].Example 2:Input: nums = [3,2,4], target = 6Output: [1,2]Example 3:Input: nums = [3,3], target = 6Output: [0,1] Constraints:2 입력으로 nums 리스트가 주어지고, 리스트 안에 숫자가 있는데 이 조합을 통해 target을 만드는 문제다.제..
02. Study/Algorithm
2024. 8. 15. 22:34