Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래밍
- 마리아 DB
- mariaDB
- C++
- ubuntu
- 반복문
- Subscribe
- 오늘도 우라라 펫
- 토픽
- install opencv-4.4.0 on ubuntu 22.04
- 오늘도 우라라 공략
- ros
- publish
- 기초
- C언어
- while
- 오늘도 우라라 펫 공략
- topic
- JungOl
- mysql
- 데이터 베이스
- MSG
- 리눅스
- 우분투
- 그랑사가
- Linux
- 환경설정
- 등차수열
- LeetCode
- 오늘도 우라라
Archives
- Today
- Total
목록[LeetCode] 1. Two Sum (1)
하루의 쉼터
[LeetCode] 1. Two Sum
Question : Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. Input: 38 Output: 2 Explanation: The process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has only one digit, return it.Question Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would hav..
Coding Test/LeetCode
2020. 11. 17. 02:02