| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 독후감
- minimum path sum
- 동적 프로그래밍
- Python
- 삼성인 아마조니언 되다
- Envoy
- 알고리즘
- technical debt
- 트리
- 기술적 채무
- 리트코드
- 파이썬
- 삼성역량테스트
- 리스트의 리스트
- leetcode
- 아마조니언
- 나는 아마존에서 미래를 다녔다
- BFS
- No Rules Rules
- Dynamic Programmin
- list of list
- 김태강
- Unique Paths
- 그거봤어?
- 와썹맨
- LongestPalindromicSubstring
- 프로그래머스
- 블린이
- mysql #numa #swap #memory
- 규칙없음
- 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..