Skip to content

Commit

Permalink
https://leetcode.cn/problems/count-vowel-strings-in-ranges
Browse files Browse the repository at this point in the history
  • Loading branch information
masx200 committed Jun 17, 2023
1 parent 73ab90b commit d30607e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2610,4 +2610,6 @@ https://leetcode.cn/problems/building-h2o

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

https://leetcode.cn/problems/count-vowel-strings-in-ranges

</details>
7 changes: 7 additions & 0 deletions count-vowel-strings-in-ranges/index.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.github.masx200.leetcode_test.count_vowel_strings_in_ranges

class Solution {
fun vowelStrings(words: Array<String>, queries: Array<IntArray>): IntArray {

}
}
2 changes: 2 additions & 0 deletions leetcode-test.iml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<content url="file://$MODULE_DIR$" dumb="true">
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" packagePrefix="com.github.masx200.leetcode_test" />
<sourceFolder url="file://$MODULE_DIR$/zigzag-iterator" isTestSource="false" packagePrefix="com.github.masx200.leetcode_test.zigzag_iterator" />
<sourceFolder url="file://$MODULE_DIR$/count-vowel-strings-in-ranges" isTestSource="false" packagePrefix="com.github.masx200.leetcode_test.count_vowel_strings_in_ranges" />
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" packagePrefix="com.github.masx200.leetcode_test" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
</component>
Expand Down

0 comments on commit d30607e

Please sign in to comment.