From 309ecc9c3508bbea2276411c1c154b9f3906e77e Mon Sep 17 00:00:00 2001 From: lichun-chen <81766312+lichun-chen@users.noreply.github.com> Date: Wed, 7 Jul 2021 20:49:20 -0500 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=200739.=E6=AF=8F=E6=97=A5?= =?UTF-8?q?=E6=B8=A9=E5=BA=A6=20=20Python3=20=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../0739.\346\257\217\346\227\245\346\270\251\345\272\246.md" | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git "a/problems/0739.\346\257\217\346\227\245\346\270\251\345\272\246.md" "b/problems/0739.\346\257\217\346\227\245\346\270\251\345\272\246.md" index fd78838e60..8ad79fe3bf 100644 --- "a/problems/0739.\346\257\217\346\227\245\346\270\251\345\272\246.md" +++ "b/problems/0739.\346\257\217\346\227\245\346\270\251\345\272\246.md" @@ -211,7 +211,7 @@ Java: } ``` Python: -''' Python3 +``` Python3 class Solution: def dailyTemperatures(self, temperatures: List[int]) -> List[int]: answer = [0]*len(temperatures) @@ -228,7 +228,7 @@ class Solution: stack.append(i) return answer -''' +``` Go: > 暴力法