Skip to content

Commit b33895a

Browse files
refactor 739
1 parent cc3ee31 commit b33895a

File tree

1 file changed

+0
-10
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-10
lines changed

src/main/java/com/fishercoder/solutions/_739.java

-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* 739. Daily Temperatures
5-
*
6-
* Given a list of daily temperatures, produce a list that,
7-
* for each day in the input, tells you how many days you would have to wait until a warmer temperature.
8-
* If there is no future day for which this is possible, put 0 instead.
9-
* For example, given the list temperatures = [73, 74, 75, 71, 69, 72, 76, 73], your output should be [1, 1, 4, 2, 1, 1, 0, 0].
10-
*
11-
* Note: The length of temperatures will be in the range [1, 30000]. Each temperature will be an integer in the range [30, 100].
12-
*/
133
public class _739 {
144

155
public static class Solution1 {

0 commit comments

Comments
 (0)