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