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
- docker
- 피보나치
- go
- 알고리즘
- k8s
- kubernetes
- Singleton Pattern
- 그리디
- cpu scheduling
- golang
- BubbleSort
- java
- Observer Pattern
- KAKAO
- Programmers
- easy
- github
- LeetCode
- Top-down
- Python
- GCP
- GKE
- Kotlin
- 파이썬
- Dynamic Programming
- 백준
- mobaXTerm
- Backjoon
- Codility
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' 카테고리의 다른 글
[LeetCode] 342. Power of Four (GoLang, Python) (0) | 2019.03.30 |
---|---|
[LeetCode] 205. Isomorphic Strings (Python) (0) | 2019.03.30 |
[LeetCode] 917. Reverse Only Letter Python (0) | 2019.03.27 |
[LeetCode] 796. Rotate String Python (0) | 2019.03.26 |
[LeetCode] 1020. Partion Array Into Three Parts With Equal Sum Python (0) | 2019.03.26 |