修改0739每日温度 python 精简版本

This commit is contained in:
mercer5
2023-04-02 11:50:29 +08:00
parent c1f17275e5
commit a490e39206

View File

@ -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)):