更新 0739.每日温度 Python3 版本
This commit is contained in:
parent
c369db528f
commit
309ecc9c35
|
|
@ -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:
|
||||
|
||||
> 暴力法
|
||||
|
|
|
|||
Loading…
Reference in New Issue