Skip to content

Commit d30607e

Browse files
committed
https://leetcode.cn/problems/count-vowel-strings-in-ranges
1 parent 73ab90b commit d30607e

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2610,4 +2610,6 @@ https://leetcode.cn/problems/building-h2o
26102610

26112611
https://leetcode.cn/problems/equal-row-and-column-pairs
26122612

2613+
https://leetcode.cn/problems/count-vowel-strings-in-ranges
2614+
26132615
</details>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package com.github.masx200.leetcode_test.count_vowel_strings_in_ranges
2+
3+
class Solution {
4+
fun vowelStrings(words: Array<String>, queries: Array<IntArray>): IntArray {
5+
6+
}
7+
}

leetcode-test.iml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<content url="file://$MODULE_DIR$" dumb="true">
55
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" packagePrefix="com.github.masx200.leetcode_test" />
66
<sourceFolder url="file://$MODULE_DIR$/zigzag-iterator" isTestSource="false" packagePrefix="com.github.masx200.leetcode_test.zigzag_iterator" />
7+
<sourceFolder url="file://$MODULE_DIR$/count-vowel-strings-in-ranges" isTestSource="false" packagePrefix="com.github.masx200.leetcode_test.count_vowel_strings_in_ranges" />
8+
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" packagePrefix="com.github.masx200.leetcode_test" />
79
<excludeFolder url="file://$MODULE_DIR$/target" />
810
</content>
911
</component>

0 commit comments

Comments
 (0)