diff --git a/problems/0739.每日温度.md b/problems/0739.每日温度.md index fd78838e..8ad79fe3 100644 --- a/problems/0739.每日温度.md +++ b/problems/0739.每日温度.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: > 暴力法