Skip to content

Commit 71c4d9c

Browse files
authored
Add "Sliding Window" missing problems (seanprashad#282)
Update questions.json Signed-off-by: Stanislav (Stanley) Modrak <[email protected]>
1 parent 3499150 commit 71c4d9c

File tree

1 file changed

+46
-1
lines changed

1 file changed

+46
-1
lines changed

src/data/questions.json

+46-1
Original file line numberDiff line numberDiff line change
@@ -8220,6 +8220,51 @@
82208220
"difficulty": "Medium",
82218221
"premium": false,
82228222
"companies": []
8223+
},
8224+
{
8225+
"id": 176,
8226+
"title": "Maximum Average Subarray I",
8227+
"slug": "maximum-average-subarray-i",
8228+
"pattern": [
8229+
"Sliding Window"
8230+
],
8231+
"difficulty": "Easy",
8232+
"premium": false,
8233+
"companies": []
8234+
},
8235+
{
8236+
"id": 177,
8237+
"title": "Maximum Number of Vowels in a Substring of Given Length",
8238+
"slug": "maximum-number-of-vowels-in-a-substring-of-given-length",
8239+
"pattern": [
8240+
"Sliding Window"
8241+
],
8242+
"difficulty": "Medium",
8243+
"premium": false,
8244+
"companies": []
8245+
},
8246+
{
8247+
"id": 178,
8248+
"title": "Max Consecutive Ones III",
8249+
"slug": "max-consecutive-ones-iii",
8250+
"pattern": [
8251+
"Sliding Window"
8252+
],
8253+
"difficulty": "Medium",
8254+
"premium": false,
8255+
"companies": []
8256+
},
8257+
{
8258+
"id": 179,
8259+
"title": "Longest Subarray of 1's After Deleting One Element",
8260+
"slug": "longest-subarray-of-1s-after-deleting-one-element",
8261+
"pattern": [
8262+
"Sliding Window",
8263+
"Dynamic Programming"
8264+
],
8265+
"difficulty": "Medium",
8266+
"premium": false,
8267+
"companies": []
82238268
}
82248269
]
8225-
}
8270+
}

0 commit comments

Comments
 (0)