Leetcode Daily Question
@leetcodeDailyQuestionChannel
2.46K
subscribers
517
files
2.16K
links
Why are you asking me to do Leetcode for this CSS job?
Download Telegram
Join
Leetcode Daily Question
2.46K subscribers
Leetcode Daily Question
leetcode.com
2024-01-31
🟡
739.daily-temperatures
🏷️
Tags
#stack
#array
#monotonic_stack
Telegraph
daily-temperatures
Given an array of integers temperatures represents the daily temperatures, return an array answer such that answer[i] is the number of days you have to wait after the ith day to get a warmer temperature. If there is no future day for which this is possible…
Source
Solution
Leetcode Daily Question
leetcode.cn
2025-02-26
🟡
1472.design-browser-history
🏷️
Tags
#stack
#design
#array
#linked_list
#data_stream
#doubly_linked_list
Telegraph
design-browser-history
你有一个只支持单个标签页的 浏览器 ,最开始你浏览的网页是 homepage ,你可以访问其他的网站 url ,也可以在浏览历史中后退 steps 步或前进 steps 步。 请你实现 BrowserHistory 类:
来源
答案