1
2
3
4
5
6
7
|
pythoclass Solution:
def findMedianSortedArrays(self, nums1: List[int], nums2: List[int]) -> float:
for i in nums2:nums1.append(i)
nums1.sort()
chk=len(nums1)
if chk%2==1 : return nums1[chk//2]
else: return (nums1[chk//2]+nums1[chk//2-1])/2
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
백준 3040 백설 공주와 일곱 난쟁이 (0) | 2021.08.19 |
---|---|
Leetcode Add Strings (0) | 2021.08.19 |
Leetcode 1822. Sign of the Product of an Array (0) | 2021.08.19 |
Leetcode 344. Reverse String (0) | 2021.08.17 |
Leetcode 1832. Check if the Sentence Is Pangram (0) | 2021.08.17 |
댓글