Skip to content

Commit 2ca2289

Browse files
refactor 1119
1 parent 6bb4a12 commit 2ca2289

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

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

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,6 @@
44
import java.util.HashSet;
55
import java.util.Set;
66

7-
/**
8-
* 1119. Remove Vowels from a String
9-
*
10-
* Given a string S, remove the vowels 'a', 'e', 'i', 'o', and 'u' from it, and return the new string.
11-
*
12-
* Example 1:
13-
* Input: "leetcodeisacommunityforcoders"
14-
* Output: "ltcdscmmntyfrcdrs"
15-
*
16-
* Example 2:
17-
* Input: "aeiou"
18-
* Output: ""
19-
*
20-
* Note:
21-
* S consists of lowercase English letters only.
22-
* 1 <= S.length <= 1000
23-
* */
247
public class _1119 {
258
public static class Solution1 {
269
public String removeVowels(String S) {

0 commit comments

Comments
 (0)