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