From b606f9f3b907a24528051fa5b5e9252f7136fd96 Mon Sep 17 00:00:00 2001 From: Jody Zhou <56443135+JodyZ0203@users.noreply.github.com> Date: Thu, 12 Nov 2020 01:47:04 -0500 Subject: [PATCH] =?UTF-8?q?Update=20twoSum=E9=97=AE=E9=A2=98=E7=9A=84?= =?UTF-8?q?=E6=A0=B8=E5=BF=83=E6=80=9D=E6=83=B3.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 算法思维系列/twoSum问题的核心思想.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/算法思维系列/twoSum问题的核心思想.md b/算法思维系列/twoSum问题的核心思想.md index fef163c..3ee4909 100644 --- a/算法思维系列/twoSum问题的核心思想.md +++ b/算法思维系列/twoSum问题的核心思想.md @@ -191,7 +191,7 @@ int[] twoSum(int[] nums, int target) { ;; 只用一个哈希表 -```Python3 +```Python class Solution: def twoSum(self, nums, target): """