일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 기술적 채무
- 리스트의 리스트
- 와썹맨
- 김태강
- 독후감
- 동적 프로그래밍
- LongestPalindromicSubstring
- Dynamic Programmin
- 파이썬
- 블린이
- 삼성인 아마조니언 되다
- list of list
- Unique Paths
- Envoy
- 나는 아마존에서 미래를 다녔다
- BFS
- technical debt
- 규칙없음
- 삼성역량테스트
- 트리
- Python
- No Rules Rules
- 알고리즘
- 그거봤어?
- leetcode
- mysql #numa #swap #memory
- 프로그래머스
- minimum path sum
- 아마조니언
- 리트코드
- Today
- Total
목록전체 글 (53)
개발자가 되고 싶은 준개발자
현상 Ha deployment failed · Issue #21926 · rancher/rancher (github.com)

문제 16. 3Sum Closest [Medium] Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the three integers. You may assume that each input would have exactly one solution. Example 1: Input: nums = [-1,2,1,-4], target = 1 Output: 2 Explanation: The sum that is closest to the target is 2. (-1 + 2 + 1 = 2). Constrai..

문제 7. Reverse Integer [Easy] Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-231, 231 - 1], then return 0. Assume the environment does not allow you to store 64-bit integers (signed or unsigned). Example 1: Input: x = 123 Output: 321 Example 2: Input: x = -123 Output: -321 Example 3: Input: x = 12..