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
- docker
- Programmers
- cpu scheduling
- Observer Pattern
- java
- Codility
- golang
- Python
- github
- 파이썬
- KAKAO
- Backjoon
- Kotlin
- easy
- mobaXTerm
- Top-down
- 백준
- GCP
- kubernetes
- GKE
- LeetCode
- 그리디
- BubbleSort
- 피보나치
- Dynamic Programming
- k8s
- Singleton Pattern
- go
- 알고리즘
Archives
- Today
- Total
목록분류 전체보기 (73)
To Be Developer
[LeetCode] 88. Merge Sorted Array Python
class Solution(object): def merge(self, nums1, m, nums2, n): """ :type nums1: List[int] :type m: int :type nums2: List[int] :type n: int :rtype: None Do not return anything, modify nums1 in-place instead. """ # nums1의 m번 인덱스부터 끝까지 삭제 del nums1[m:] # nums1 에 nums2의 0~n-1 인덱스 원소들 추가 nums1 += nums2[0:n] # 오름차순으로 정렬 nums1.sort() return nums1 https://leetcode.com/problems/merge-sorted-array/
알고리즘/LeetCode
2019. 3. 29. 15:18