From b1ecc126f7aa3632f2f445df7a1ddf8448555b22 Mon Sep 17 00:00:00 2001 From: ChunyuPCY <18896534787@163.com> Date: Fri, 23 Aug 2019 23:26:04 +0800 Subject: [PATCH] delete some strings --- 4. Median of Two Sorted Arrays/code.py | 5 ----- 1 file changed, 5 deletions(-) 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()