We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 068fce6 commit 51ff539Copy full SHA for 51ff539
src/TumgadCLI.java
@@ -183,7 +183,8 @@ private static void chooseExercises() {
183
Graph.generateExercise();
184
break;
185
case "AB":
186
- say("AB Trees can not be generated yet, still in development");
+ System.out.println(ANSI_PURPLE + "Generating (a,b) Trees" + ANSI_RESET);
187
+ BTree.generateExercise();
188
189
case "AVL":
190
System.out.println(ANSI_PURPLE + "Generating AVL Trees" + ANSI_RESET);
@@ -205,7 +206,6 @@ private static void chooseExercises() {
205
206
say("Floyd-Warshall can not be generated yet, still in development");
207
208
case "DEV":
- BTree.generateExercise();
209
say("Generating components that are still in development");
210
211
default:
0 commit comments