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
- Singleton Pattern
- cpu scheduling
- Dynamic Programming
- KAKAO
- java
- Observer Pattern
- Programmers
- go
- Kotlin
- GCP
- Python
- 파이썬
- GKE
- kubernetes
- golang
- Backjoon
- BubbleSort
- 피보나치
- Codility
- 알고리즘
- docker
- Top-down
- github
- 그리디
- easy
- k8s
- LeetCode
- 백준
- mobaXTerm
Archives
- Today
- Total
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