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