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 |
29 | 30 | 31 |
Tags
- 더현대서울 맛집
- ChatGPT
- Baekjoon
- 금융문자분석경진대회
- Real or Not? NLP with Disaster Tweets
- 백준
- dacon
- 데이콘
- 우분투
- 파이썬
- 프로그래머스 파이썬
- gs25
- leetcode
- Docker
- 캐치카페
- SW Expert Academy
- ubuntu
- 코로나19
- 프로그래머스
- 편스토랑
- AI 경진대회
- Kaggle
- Git
- github
- 편스토랑 우승상품
- PYTHON
- 자연어처리
- programmers
- 맥북
- hackerrank
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 88. Merge Sorted Array (Python) 본문
728x90
반응형
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()
'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 |
Comments