Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 편스토랑
- 프로그래머스
- 금융문자분석경진대회
- ChatGPT
- 백준
- leetcode
- SW Expert Academy
- 캐치카페
- Kaggle
- 우분투
- AI 경진대회
- Git
- hackerrank
- dacon
- 맥북
- gs25
- 코로나19
- PYTHON
- 데이콘
- Baekjoon
- 편스토랑 우승상품
- ubuntu
- 파이썬
- Docker
- 프로그래머스 파이썬
- Real or Not? NLP with Disaster Tweets
- programmers
- 자연어처리
- 더현대서울 맛집
- github
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 88. Merge Sorted Array (Python) 본문
728x90
반응형
![](http://t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png)
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array.
Note:
- The number of elements initialized in nums1 and nums2 are m and n respectively.
- You may assume that nums1 has enough space (size that is greater or equal to m + n) to hold additional elements from nums2.
Example:
Input:
nums1 = [1,2,3,0,0,0], m = 3
nums2 = [2,5,6], n = 3
Output: [1,2,2,3,5,6]
Solution
class Solution:
def merge(self, nums1: List[int], m: int, nums2: List[int], n: int) -> None:
"""
Do not return anything, modify nums1 in-place instead.
"""
del nums1[m:]
nums1 += nums2[0:n]
nums1.sort()
![](http://t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png)
![](https://blog.kakaocdn.net/dn/paqbq/btqEPmqIF90/4lt70vDBJY9SkDwP46ThJk/img.png)
![](https://blog.kakaocdn.net/dn/b2DQXk/btqEPTVVbx8/lDdfKjPusSVAS6Mic3KmJ1/img.png)
SOMJANG/CODINGTEST_PRACTICE
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 125. Valid Palindrome (Python) (0) | 2020.06.16 |
---|---|
[leetCode] 387. First Unique Character in a String (Python) (0) | 2020.06.15 |
[leetCode] 136. Single Number (Python) (0) | 2020.06.13 |
[leetCode] 412. Fizz Buzz (Python) (2) | 2020.06.13 |
[leetCode] 891. Sum of Subsequence Widths (Python) (0) | 2020.06.11 |