We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b9f22a commit a80516bCopy full SHA for a80516b
src/main/java/RandomLetterChooser.java
@@ -6,16 +6,4 @@ public RandomLetterChooser(String str){
6
super(getSingleLetters(str));
7
}
8
9
-}
10
-
11
12
- public static String[] getSingleLetters(String str)
13
- {
14
- String[] letterArray = new String[str.length()];
15
- for(int i=0; i<str.length(); i++)
16
17
- letterArray[i] = ""+str.charAt(i);
18
- }
19
- return letterArray;
20
21
0 commit comments