修改0739每日温度 python 精简版本
This commit is contained in:
parent
c1f17275e5
commit
a490e39206
|
|
@ -297,7 +297,6 @@ class Solution:
|
|||
```python
|
||||
class Solution:
|
||||
def dailyTemperatures(self, temperatures: List[int]) -> List[int]:
|
||||
# 单调栈
|
||||
answer = [0]*len(temperatures)
|
||||
stack = []
|
||||
for i in range(len(temperatures)):
|
||||
|
|
|
|||
Loading…
Reference in New Issue