We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feeccc5 commit 1a7d078Copy full SHA for 1a7d078
src/main/java/RandomLetterChooser.java
@@ -1,11 +1,17 @@
1
public class RandomLetterChooser extends RandomStringChooser
2
{
3
4
- public RandomLetterChooser(String str)
5
- {
+ public RandomLetterChooser(String str){
6
/* to be implemented in part (b) */
7
-
+ super(smth(str));
8
+ }
9
+ public static String[] getSingleLetters(String str){
10
+ for(int i = 0; i < str.length();i++)
11
+ return;
12
}
13
+
14
+}
15
16
17
public static String[] getSingleLetters(String str)
0 commit comments