diff --git a/4. Median of Two Sorted Arrays/code.py b/4. Median of Two Sorted Arrays/code.py index b389e59..4b92eab 100644 --- a/4. Median of Two Sorted Arrays/code.py +++ b/4. Median of Two Sorted Arrays/code.py @@ -13,11 +13,6 @@ def findMedianSortedArrays(self, nums1: List[int], nums2: List[int]) -> float: m_index.append(aver_len) -''' -test -''' - - if __name__ == '__main__': solution = Solution()