Skip to content

Commit

Permalink
更新 0739.每日温度 Python3 版本
Browse files Browse the repository at this point in the history
  • Loading branch information
lichun-chen committed Jul 8, 2021
1 parent c369db5 commit 309ecc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions problems/0739.每日温度.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ Java:
}
```
Python:
''' Python3
``` Python3
class Solution:
def dailyTemperatures(self, temperatures: List[int]) -> List[int]:
answer = [0]*len(temperatures)
Expand All @@ -228,7 +228,7 @@ class Solution:
stack.append(i)

return answer
'''
```
Go:

> 暴力法
Expand Down

0 comments on commit 309ecc9

Please sign in to comment.