From a5fd25ae4d89314dd57a50690adbb49a81f4bbaf Mon Sep 17 00:00:00 2001 From: ShusenTang Date: Fri, 21 Feb 2020 17:31:57 +0800 Subject: [PATCH] :hammer: fix typo --- solutions/4. Median of Two Sorted Arrays.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solutions/4. Median of Two Sorted Arrays.md b/solutions/4. Median of Two Sorted Arrays.md index e8e2256..8c2d6d8 100644 --- a/solutions/4. Median of Two Sorted Arrays.md +++ b/solutions/4. Median of Two Sorted Arrays.md @@ -124,6 +124,8 @@ B[j-1] <= A[i] && A[i-1] <= B[j], where j = N - i # C++ + +## 思路一 ``` C++ class Solution { public: